[Arakhnę-Dev] [243] * Prepare for Maven 3 |
[ Thread Index |
Date Index
| More arakhne.org/dev Archives
]
Revision: 243
Author: galland
Date: 2011-08-13 14:56:03 +0200 (Sat, 13 Aug 2011)
Log Message:
-----------
* Prepare for Maven 3
Modified Paths:
--------------
trunk/arakhneLogger/pom.xml
trunk/arakhneLogger/src/main/java/org/arakhne/logging/AbstractLogger.java
trunk/arakhneLogger/src/main/java/org/arakhne/logging/AbstractPrintStreamLogger.java
trunk/arakhneLogger/src/main/java/org/arakhne/logging/AbstractStandAloneLogger.java
trunk/arakhneLogger/src/main/java/org/arakhne/logging/ConsoleLogger.java
trunk/arakhneLogger/src/main/java/org/arakhne/logging/FileLogger.java
trunk/arakhneLogger/src/main/java/org/arakhne/logging/LogLevel.java
trunk/arakhneLogger/src/main/java/org/arakhne/logging/Logger.java
trunk/arakhneLogger/src/main/java/org/arakhne/logging/LoggerEvent.java
trunk/arakhneLogger/src/main/java/org/arakhne/logging/LoggerEventListener.java
trunk/arakhneLogger/src/main/java/org/arakhne/logging/LoggingSystem.java
trunk/arakhneLogger/src/main/java/org/arakhne/logging/SunLogger.java
trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger.properties
trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_de.properties
trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_es.properties
trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_fr.properties
trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_it.properties
trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_nl.properties
trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_pt.properties
Modified: trunk/arakhneLogger/pom.xml
===================================================================
--- trunk/arakhneLogger/pom.xml 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/pom.xml 2011-08-13 12:56:03 UTC (rev 243)
@@ -25,21 +25,6 @@
<build>
<!--
- Configure the source files as resources to be filtered into a custom
- target directory
- -->
- <resources>
- <resource>
- <directory>src/main/java</directory>
- <filtering>true</filtering>
- <targetPath>${project.build.directory}/generated-sources/java</targetPath>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- <!--
Overrule the default pom source directory to match our generated
sources so the compiler will pick them up
-->
@@ -85,12 +70,20 @@
<groupId>org.arakhne.afc</groupId>
<artifactId>tag-replacer</artifactId>
<executions>
- <execution>
- <phase>process-resources</phase>
- <goals>
- <goal>replacesrc</goal>
- </goals>
- </execution>
+ <execution>
+ <id>source_generation</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generatesrc</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>property_preparation</id>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>replaceresource</goal>
+ </goals>
+ </execution>
</executions>
</plugin>
<plugin>
Modified: trunk/arakhneLogger/src/main/java/org/arakhne/logging/AbstractLogger.java
===================================================================
--- trunk/arakhneLogger/src/main/java/org/arakhne/logging/AbstractLogger.java 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/java/org/arakhne/logging/AbstractLogger.java 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,7 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND and Nicolas GAUD
+ * Copyright (C) 2004-2009 Stephane GALLANDcolas GAUD
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -28,7 +28,7 @@
* interface.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see Logger
Modified: trunk/arakhneLogger/src/main/java/org/arakhne/logging/AbstractPrintStreamLogger.java
===================================================================
--- trunk/arakhneLogger/src/main/java/org/arakhne/logging/AbstractPrintStreamLogger.java 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/java/org/arakhne/logging/AbstractPrintStreamLogger.java 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,7 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2009 Stéphane GALLAND and Nicolas GAUD
+ * Copyright (C) 2009 Stephane GALLANDcolas GAUD
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -28,7 +28,7 @@
* loggers which are writing inside a print stream.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see Logger
Modified: trunk/arakhneLogger/src/main/java/org/arakhne/logging/AbstractStandAloneLogger.java
===================================================================
--- trunk/arakhneLogger/src/main/java/org/arakhne/logging/AbstractStandAloneLogger.java 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/java/org/arakhne/logging/AbstractStandAloneLogger.java 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,7 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2009 Stéphane GALLAND and Nicolas GAUD
+ * Copyright (C) 2009 Stephane GALLANDcolas GAUD
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -30,7 +30,7 @@
* not-wrapped loggers.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see Logger
Modified: trunk/arakhneLogger/src/main/java/org/arakhne/logging/ConsoleLogger.java
===================================================================
--- trunk/arakhneLogger/src/main/java/org/arakhne/logging/ConsoleLogger.java 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/java/org/arakhne/logging/ConsoleLogger.java 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,7 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND and Nicolas GAUD
+ * Copyright (C) 2004-2009 Stephane GALLANDcolas GAUD
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -25,7 +25,7 @@
* interface. This impl is displaying on the standard output.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see Logger
Modified: trunk/arakhneLogger/src/main/java/org/arakhne/logging/FileLogger.java
===================================================================
--- trunk/arakhneLogger/src/main/java/org/arakhne/logging/FileLogger.java 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/java/org/arakhne/logging/FileLogger.java 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,7 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2009 Stéphane GALLAND and Nicolas GAUD
+ * Copyright (C) 2009 Stephane GALLANDcolas GAUD
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -30,7 +30,7 @@
* interface. This impl is writting inside a file.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see Logger
Modified: trunk/arakhneLogger/src/main/java/org/arakhne/logging/LogLevel.java
===================================================================
--- trunk/arakhneLogger/src/main/java/org/arakhne/logging/LogLevel.java 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/java/org/arakhne/logging/LogLevel.java 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,7 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND and Nicolas GAUD
+ * Copyright (C) 2004-2009 Stephane GALLANDcolas GAUD
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -25,7 +25,7 @@
*
* @author $Author: galland$
* @author $Author: gaud$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
Modified: trunk/arakhneLogger/src/main/java/org/arakhne/logging/Logger.java
===================================================================
--- trunk/arakhneLogger/src/main/java/org/arakhne/logging/Logger.java 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/java/org/arakhne/logging/Logger.java 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,7 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND and Nicolas GAUD
+ * Copyright (C) 2004-2009 Stephane GALLANDcolas GAUD
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -28,7 +28,7 @@
*
* @author $Author: galland$
* @author $Author: gaud$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see LogLevel
Modified: trunk/arakhneLogger/src/main/java/org/arakhne/logging/LoggerEvent.java
===================================================================
--- trunk/arakhneLogger/src/main/java/org/arakhne/logging/LoggerEvent.java 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/java/org/arakhne/logging/LoggerEvent.java 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,7 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND and Nicolas GAUD
+ * Copyright (C) 2004-2009 Stephane GALLANDcolas GAUD
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -26,7 +26,7 @@
* This class provides a description of a logging event.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see Logger
Modified: trunk/arakhneLogger/src/main/java/org/arakhne/logging/LoggerEventListener.java
===================================================================
--- trunk/arakhneLogger/src/main/java/org/arakhne/logging/LoggerEventListener.java 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/java/org/arakhne/logging/LoggerEventListener.java 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,7 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2008 Stéphane GALLAND and Nicolas GAUD
+ * Copyright (C) 2004-2008 Stephane GALLANDcolas GAUD
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -26,7 +26,7 @@
* Listener on logger events.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see Logger
Modified: trunk/arakhneLogger/src/main/java/org/arakhne/logging/LoggingSystem.java
===================================================================
--- trunk/arakhneLogger/src/main/java/org/arakhne/logging/LoggingSystem.java 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/java/org/arakhne/logging/LoggingSystem.java 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,7 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2008 Stéphane GALLAND and Nicolas GAUD
+ * Copyright (C) 2004-2008 Stephane GALLANDcolas GAUD
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -32,7 +32,7 @@
*
* @author $Author: galland$
* @author $Author: gaud$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
Modified: trunk/arakhneLogger/src/main/java/org/arakhne/logging/SunLogger.java
===================================================================
--- trunk/arakhneLogger/src/main/java/org/arakhne/logging/SunLogger.java 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/java/org/arakhne/logging/SunLogger.java 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,7 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND and Nicolas GAUD
+ * Copyright (C) 2004-2009 Stephane GALLANDcolas GAUD
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -27,7 +27,7 @@
* interface. This impl is based on the Sun's Logging Facade for Java
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see Logger
Modified: trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger.properties
===================================================================
--- trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger.properties 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger.properties 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,6 +1,6 @@
# $Id$
#
-# Copyright (C) 2009 Stéphane GALLAND and Nicolas GAUD
+# Copyright (C) 2009 Stephane GALLANDcolas GAUD
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
Modified: trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_de.properties
===================================================================
--- trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_de.properties 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_de.properties 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,6 +1,6 @@
# $Id$
#
-# Copyright (C) 2009 Stéphane GALLAND and Nicolas GAUD
+# Copyright (C) 2009 Stephane GALLANDcolas GAUD
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
Modified: trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_es.properties
===================================================================
--- trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_es.properties 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_es.properties 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,6 +1,6 @@
# $Id$
#
-# Copyright (C) 2009 Stéphane GALLAND and Nicolas GAUD
+# Copyright (C) 2009 Stephane GALLANDcolas GAUD
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
Modified: trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_fr.properties
===================================================================
--- trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_fr.properties 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_fr.properties 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,6 +1,6 @@
# $Id$
#
-# Copyright (C) 2009 Stéphane GALLAND and Nicolas GAUD
+# Copyright (C) 2009 Stephane GALLANDcolas GAUD
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
Modified: trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_it.properties
===================================================================
--- trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_it.properties 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_it.properties 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,6 +1,6 @@
# $Id$
#
-# Copyright (C) 2009 Stéphane GALLAND and Nicolas GAUD
+# Copyright (C) 2009 Stephane GALLANDcolas GAUD
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
Modified: trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_nl.properties
===================================================================
--- trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_nl.properties 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_nl.properties 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,6 +1,6 @@
# $Id$
#
-# Copyright (C) 2009 Stéphane GALLAND and Nicolas GAUD
+# Copyright (C) 2009 Stephane GALLANDcolas GAUD
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
Modified: trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_pt.properties
===================================================================
--- trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_pt.properties 2011-08-13 12:55:52 UTC (rev 242)
+++ trunk/arakhneLogger/src/main/resources/org/arakhne/logging/AbstractStandAloneLogger_pt.properties 2011-08-13 12:56:03 UTC (rev 243)
@@ -1,6 +1,6 @@
# $Id$
#
-# Copyright (C) 2009 Stéphane GALLAND and Nicolas GAUD
+# Copyright (C) 2009 Stephane GALLANDcolas GAUD
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public