[Arakhnę-Dev] [245] * Prepare for Maven 3 |
[ Thread Index |
Date Index
| More arakhne.org/dev Archives
]
Revision: 245
Author: galland
Date: 2011-08-13 14:56:30 +0200 (Sat, 13 Aug 2011)
Log Message:
-----------
* Prepare for Maven 3
Modified Paths:
--------------
trunk/arakhneVmutils/java/pom.xml
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/Caller.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ClassLoaderFinder.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ClasspathUtil.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/DynamicURLClassLoader.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ExternalizableResource.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/FileSystem.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/LibraryLoader.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/MACNumber.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/OperatingSystem.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/OperatingSystemInfo.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/OperatingSystemNativeWrapper.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ReflectionUtil.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ResourceNotFoundException.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/Resources.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ThreadServiceFinder.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ThreadServiceProvider.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/URISchemeType.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/URLHandlerUtil.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/VMCommandLine.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/file/Handler.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/file/HandlerFactory.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/file/URLConnection.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/resource/Handler.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/resource/HandlerFactory.java
trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/resource/URLConnection.java
trunk/arakhneVmutils/java/src/main/resources/org/arakhne/vmutil/OperatingSystem.properties
trunk/arakhneVmutils/java/src/main/resources/org/arakhne/vmutil/OperatingSystem_fr.properties
trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/CallerTest.java
trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/ClasspathUtilTest.java
trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/FileSystemTest.java
trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/ResourcesTest.java
trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/VMCommandLineTest.java
trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/file/URLConnectionTest.java
trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/resource/URLConnectionTest.java
Modified: trunk/arakhneVmutils/java/pom.xml
===================================================================
--- trunk/arakhneVmutils/java/pom.xml 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/pom.xml 2011-08-13 12:56:30 UTC (rev 245)
@@ -32,21 +32,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
-->
@@ -105,9 +90,17 @@
<artifactId>tag-replacer</artifactId>
<executions>
<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>replacesrc</goal>
+ <goal>replaceresource</goal>
</goals>
</execution>
</executions>
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/Caller.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/Caller.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/Caller.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2008 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2004-2008 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -32,7 +30,7 @@
* It inspirated from the Sun's <code>sun.reflect.Reflection</code> class
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ClassLoaderFinder.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ClassLoaderFinder.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ClassLoaderFinder.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2008 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2004-2008 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -30,7 +28,7 @@
* If none was found, the default class loader will be replied.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ClasspathUtil.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ClasspathUtil.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ClasspathUtil.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2005-2010 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2005-2010 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -33,7 +31,7 @@
* Current classpath and associated utility functions.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @since 5.0
@@ -110,7 +108,7 @@
/**
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @since 6.0
@@ -160,7 +158,7 @@
/**
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @since 6.0
@@ -221,7 +219,7 @@
/**
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @since 6.0
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/DynamicURLClassLoader.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/DynamicURLClassLoader.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/DynamicURLClassLoader.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2008 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2004-2008 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -56,7 +54,7 @@
* a set of classpaths.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
@@ -547,7 +545,7 @@
/**
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ExternalizableResource.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ExternalizableResource.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ExternalizableResource.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2005-2010 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2005-2010 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -27,7 +25,7 @@
* owns a external resource.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @since 4.2
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/FileSystem.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/FileSystem.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/FileSystem.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2004-2009 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -47,7 +45,7 @@
/** An utility class that permits to deal with filenames.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
@@ -2465,7 +2463,7 @@
/** Hook to recursively delete files on JVM exit.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @since 6.0
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/LibraryLoader.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/LibraryLoader.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/LibraryLoader.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2004-2009 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -39,7 +37,7 @@
* disable, it ignore all the loading queries.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/MACNumber.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/MACNumber.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/MACNumber.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2005-2010 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2005-2010 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -34,7 +32,7 @@
/** A MACNumber is the unique number associated to a network interface.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see NetworkInterface
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/OperatingSystem.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/OperatingSystem.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/OperatingSystem.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2011 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2004-2011 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -27,7 +25,7 @@
* This is a list of supported operating system.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/OperatingSystemInfo.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/OperatingSystemInfo.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/OperatingSystemInfo.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2009 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2009 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -29,7 +27,7 @@
* libraries from <code>arakhneVmutils</code>.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/OperatingSystemNativeWrapper.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/OperatingSystemNativeWrapper.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/OperatingSystemNativeWrapper.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2004-2009 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -29,7 +27,7 @@
* for the native libs is still able to be run.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @since 6.0
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ReflectionUtil.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ReflectionUtil.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ReflectionUtil.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2004-2009 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -39,7 +37,7 @@
* the Class class with autoboxing-compliant functions.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @since since JDK 1.5
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ResourceNotFoundException.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ResourceNotFoundException.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ResourceNotFoundException.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2010 Alexandre WILLAUME, Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2010 Alexandre WILLAUME, Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -27,7 +25,7 @@
* thrown when a required Java resource was not found.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @since 4.2
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/Resources.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/Resources.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/Resources.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2004-2009 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -32,7 +30,7 @@
* </ul>
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @since 4.2
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ThreadServiceFinder.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ThreadServiceFinder.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ThreadServiceFinder.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2005-2010 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2005-2010 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -30,7 +28,7 @@
* This class permits to centralize the identify of the thread service providers.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
@@ -84,7 +82,7 @@
/**
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ThreadServiceProvider.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ThreadServiceProvider.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/ThreadServiceProvider.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2005-2010 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2005-2010 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -27,7 +25,7 @@
* This interface describes a provider of thread's service..
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/URISchemeType.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/URISchemeType.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/URISchemeType.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2004-2009 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -27,7 +25,7 @@
/** Commonly supported types of schemes for URL.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @since 5.0
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/URLHandlerUtil.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/URLHandlerUtil.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/URLHandlerUtil.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2004-2009 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -28,7 +26,7 @@
/** Utilities around URLHandler.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @since 6.0
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/VMCommandLine.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/VMCommandLine.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/VMCommandLine.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2004-2009 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2004-2009 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -36,7 +34,7 @@
* This utility class permits to get the java command line for the current VM.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
@@ -675,7 +673,7 @@
/**
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/file/Handler.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/file/Handler.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/file/Handler.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2010 Alexandre WILLAUME, Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2010 Alexandre WILLAUME, Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -42,7 +40,7 @@
*
* @author $Author: galland$
* @author $Author: willaume$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see URLStreamHandler
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/file/HandlerFactory.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/file/HandlerFactory.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/file/HandlerFactory.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2010 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2010 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -37,7 +35,7 @@
* <code>URL.setURLStreamHandlerFactory(new FileResourceURLStreamHandlerFactory());</code>.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see URLStreamHandlerFactory
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/file/URLConnection.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/file/URLConnection.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/file/URLConnection.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2010 Alexandre WILLAUME, Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2010 Alexandre WILLAUME, Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -55,7 +53,7 @@
*
* @author $Author: galland$
* @author $Author: willaume$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see java.net.URLConnection
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/resource/Handler.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/resource/Handler.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/resource/Handler.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2010 Alexandre WILLAUME, Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2010 Alexandre WILLAUME, Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -41,7 +39,7 @@
* <code>URL.setURLStreamHandlerFactory(new ResourceURLStreamHandlerFactory());</code>.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see URLStreamHandler
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/resource/HandlerFactory.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/resource/HandlerFactory.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/resource/HandlerFactory.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2010 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2010 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -37,7 +35,7 @@
* <code>URL.setURLStreamHandlerFactory(new ResourceURLStreamHandlerFactory());</code>.
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see URLStreamHandlerFactory
Modified: trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/resource/URLConnection.java
===================================================================
--- trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/resource/URLConnection.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/java/org/arakhne/vmutil/resource/URLConnection.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2010 Alexandre WILLAUME, Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2010 Alexandre WILLAUME, Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -41,7 +39,7 @@
* (basicaly, file or jar protocols).
*
* @author $Author: galland$
- * @version $Name$ $Revision$ $Date$
+ * @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
* @see URLConnection
Modified: trunk/arakhneVmutils/java/src/main/resources/org/arakhne/vmutil/OperatingSystem.properties
===================================================================
--- trunk/arakhneVmutils/java/src/main/resources/org/arakhne/vmutil/OperatingSystem.properties 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/resources/org/arakhne/vmutil/OperatingSystem.properties 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,8 +1,6 @@
# $Id$
#
-# Copyright (C) 2011 Stéphane GALLAND
-#
-# This library is free software; you can redistribute it and/or
+# Copyright (C) 2011 Stephane GALLANDrary is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
Modified: trunk/arakhneVmutils/java/src/main/resources/org/arakhne/vmutil/OperatingSystem_fr.properties
===================================================================
--- trunk/arakhneVmutils/java/src/main/resources/org/arakhne/vmutil/OperatingSystem_fr.properties 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/main/resources/org/arakhne/vmutil/OperatingSystem_fr.properties 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,8 +1,6 @@
# $Id$
#
-# Copyright (C) 2011 Stéphane GALLAND
-#
-# This library is free software; you can redistribute it and/or
+# Copyright (C) 2011 Stephane GALLANDrary is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
Modified: trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/CallerTest.java
===================================================================
--- trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/CallerTest.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/CallerTest.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,8 +1,6 @@
/* $Id$
*
- * Copyright (C) 2007-09 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2007-09 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
@@ -121,7 +119,7 @@
}
/**
- * @author Stéphane GALLAND <galland@xxxxxxxxxxx>
+ * @author StephanStephanStephane GALLAND
* @version $Name$ $Revision$ $Date$
* @mavengroupid org.arakhne.afc
* @mavenartifactid arakhneVmutils
Modified: trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/ClasspathUtilTest.java
===================================================================
--- trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/ClasspathUtilTest.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/ClasspathUtilTest.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,8 +1,6 @@
/* $Id$
*
- * Copyright (C) 2007-09 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2007-09 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
Modified: trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/FileSystemTest.java
===================================================================
--- trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/FileSystemTest.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/FileSystemTest.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,8 +1,6 @@
/* $Id$
*
- * Copyright (C) 2007-09 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2007-09 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
Modified: trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/ResourcesTest.java
===================================================================
--- trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/ResourcesTest.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/ResourcesTest.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,8 +1,6 @@
/* $Id$
*
- * Copyright (C) 2007-09 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2007-09 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
Modified: trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/VMCommandLineTest.java
===================================================================
--- trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/VMCommandLineTest.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/VMCommandLineTest.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,8 +1,6 @@
/* $Id$
*
- * Copyright (C) 2007-09 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2007-09 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
Modified: trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/file/URLConnectionTest.java
===================================================================
--- trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/file/URLConnectionTest.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/file/URLConnectionTest.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2010 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2010 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
Modified: trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/resource/URLConnectionTest.java
===================================================================
--- trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/resource/URLConnectionTest.java 2011-08-13 12:56:14 UTC (rev 244)
+++ trunk/arakhneVmutils/java/src/test/java/org/arakhne/vmutil/resource/URLConnectionTest.java 2011-08-13 12:56:30 UTC (rev 245)
@@ -1,9 +1,7 @@
/*
* $Id$
*
- * Copyright (C) 2010 Stéphane GALLAND
- *
- * This library is free software; you can redistribute it and/or
+ * Copyright (C) 2010 Stephane GALLANDibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.