[Lutinutil-commits] r1302 - lutinutil/trunk
Author: tchemit Date: 2009-01-07 09:28:05 +0000 (Wed, 07 Jan 2009) New Revision: 1302 Modified: lutinutil/trunk/changelog.txt lutinutil/trunk/pom.xml Log: release Modified: lutinutil/trunk/changelog.txt =================================================================== --- lutinutil/trunk/changelog.txt 2009-01-07 08:29:41 UTC (rev 1301) +++ lutinutil/trunk/changelog.txt 2009-01-07 09:28:05 UTC (rev 1302) @@ -1,4 +1,4 @@ -ver 1.0.2 ??? 200901?? +ver 1.0.2 chemit 20090107 * 20090105 [chemit] add getCurrentDirectory method in FileUtil * 20090104 [chemit] modify I18n loading to not override sentences with empty value are found and there is already a none empty value loaded Modified: lutinutil/trunk/pom.xml =================================================================== --- lutinutil/trunk/pom.xml 2009-01-07 08:29:41 UTC (rev 1301) +++ lutinutil/trunk/pom.xml 2009-01-07 09:28:05 UTC (rev 1302) @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> @@ -10,13 +11,13 @@ <parent> <groupId>org.codelutin</groupId> <artifactId>lutinproject</artifactId> - <version>3.2</version> + <version>3.3</version> </parent> <artifactId>lutinutil</artifactId> - + <version>1.0.2-SNAPSHOT</version> - + <dependencies> <dependency> @@ -70,7 +71,7 @@ <labs.project>lutinutil</labs.project> - <!-- TODO remove this as soon as tests are fixed on hudson... --> + <!-- TODO remove this as soon as tests are fixed on hudson... --> <maven.test.testFailureIgnore>true</maven.test.testFailureIgnore> </properties> @@ -92,24 +93,6 @@ </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-assembly-plugin</artifactId> - <configuration> - <descriptors> - <descriptor>src/main/assembly/deps.xml</descriptor> - <descriptor>src/main/assembly/full.xml</descriptor> - </descriptors> - </configuration> - <executions> - <execution> - <goals> - <goal>single</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> </build> @@ -125,4 +108,36 @@ <url>${maven.scm.url}</url> </scm> + <profiles> + <profile> + <id>release-profile</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <build> + <plugins> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <descriptors> + <descriptor>src/main/assembly/deps.xml</descriptor> + <descriptor>src/main/assembly/full.xml</descriptor> + </descriptors> + </configuration> + <executions> + <execution> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + </project>
participants (1)
-
tchemit@users.labs.libre-entreprise.org