[Lutinprocessor-commits] r162 - lutinprocessor/trunk
Author: tchemit Date: 2009-02-18 09:10:29 +0000 (Wed, 18 Feb 2009) New Revision: 162 Added: lutinprocessor/trunk/README.txt lutinprocessor/trunk/changelog.txt Modified: lutinprocessor/trunk/pom.xml Log: * Parent is org.codelutin:lutinproject:3.4 * use same version as maven-processor-plugin Added: lutinprocessor/trunk/README.txt =================================================================== --- lutinprocessor/trunk/README.txt (rev 0) +++ lutinprocessor/trunk/README.txt 2009-02-18 09:10:29 UTC (rev 162) @@ -0,0 +1,2 @@ +To deploy new version of pom: mvn deploy +To install localy: mvn install Copied: lutinprocessor/trunk/changelog.txt (from rev 161, lutinprocessor/trunk/changelog) =================================================================== --- lutinprocessor/trunk/changelog.txt (rev 0) +++ lutinprocessor/trunk/changelog.txt 2009-02-18 09:10:29 UTC (rev 162) @@ -0,0 +1,18 @@ +ver-0-17 ??? (200902??) + * Parent is org.codelutin:lutinproject:3.4 + * use same version as maven-processor-plugin + +ver-0-15 thimel (20080922) + * Parent is org.codelutin:lutinproject:3.0 + +ver-0-14 chemit (2008????) + * utilisation super-pom org.codelutin:lutinproject:2.4 (reusingage de directory layout) + * passage en licence lgpl v3 + +ver-0-? poussin (2005????) + + * modification pour que le processor fonctionne avec des StringReader + +ver-0-1 poussin (20040405) + + * Utilisation de maven pour la gestion du projet Property changes on: lutinprocessor/trunk/changelog.txt ___________________________________________________________________ Name: svn:keywords + Author Date Id Revision Name: svn:mergeinfo + Name: svn:eol-style + native Modified: lutinprocessor/trunk/pom.xml =================================================================== --- lutinprocessor/trunk/pom.xml 2008-11-27 09:42:44 UTC (rev 161) +++ lutinprocessor/trunk/pom.xml 2009-02-18 09:10:29 UTC (rev 162) @@ -11,10 +11,11 @@ <parent> <groupId>org.codelutin</groupId> <artifactId>lutinproject</artifactId> - <version>2.5</version> + <version>3.4-SNAPSHOT</version> </parent> <artifactId>lutinprocessor</artifactId> + <version>0.17-SNAPSHOT</version> <dependencies> <dependency> @@ -30,12 +31,10 @@ <!-- ************************************************************* --> <name>Lutin file processor</name> - <version>0.15</version> <description> Cette librairie permet la création de filtre sur les fichiers sources. </description> <inceptionYear>2002</inceptionYear> - <url>${labs.project.url}</url> <!-- ************************************************************* --> <!-- *** Build Settings ****************************************** --> @@ -48,18 +47,10 @@ <!-- id du projet du labs --> <labs.id>28</labs.id> - <!-- nom du projet sur le labs (pas necessaire car = artifactId) --> <labs.project>lutinprocessor</labs.project> </properties> - - <!--Source control management--> - <scm> - <connection>${maven.scm.connection}</connection> - <developerConnection>${maven.scm.developerConnection}</developerConnection> - <url>${maven.scm.url}</url> - </scm> <build> <plugins> @@ -68,6 +59,22 @@ <plugin> <groupId>org.codelutin</groupId> <artifactId>maven-jrst-plugin</artifactId> + <version>${jrst.version}</version> + <configuration> + <directoryIn>${maven.src.dir}/site</directoryIn> + <directoryOut>${maven.site.gen.dir}</directoryOut> + <defaultLocale>fr</defaultLocale> + <inputEncoding>${project.build.sourceEncoding}</inputEncoding> + <outputEncoding>${project.build.sourceEncoding}</outputEncoding> + </configuration> + <executions> + <execution> + <phase>pre-site</phase> + <goals> + <goal>jrst</goal> + </goals> + </execution> + </executions> </plugin> </plugins> @@ -77,4 +84,63 @@ <!-- *** Build Environment ************************************** --> <!-- ************************************************************* --> + <!--Source control management--> + <scm> + <connection>${maven.scm.connection}</connection> + <developerConnection>${maven.scm.developerConnection}</developerConnection> + <url>${maven.scm.url}</url> + </scm> + + <!--Code Lutin Repository--> + <repositories> + <repository> + <id>codelutin-repository</id> + <name>CodeLutinRepository</name> + <url>http://lutinbuilder.labs.libre-entreprise.org/maven2</url> + <snapshots> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </snapshots> + <releases> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </releases> + </repository> + </repositories> + + <profiles> + <!-- perform only on a release stage when using the maven-release-plugin --> + <profile> + <id>release-profile</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <build> + <plugins> + <!-- always add license and third-party files to classpath --> + <plugin> + <groupId>org.codelutin</groupId> + <artifactId>maven-license-switcher-plugin</artifactId> + <version>${license-switcher.version}</version> + <configuration> + <licenseName>${license-switcher.licenseName}</licenseName> + </configuration> + <executions> + <execution> + <id>attach-licenses</id> + <goals> + <goal>license</goal> + <goal>third-party</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + </project>
participants (1)
-
tchemit@users.labs.libre-entreprise.org