[Lutingenerator-commits] r422 - maven-generator-plugin/trunk
Author: tchemit Date: 2009-02-10 13:49:20 +0000 (Tue, 10 Feb 2009) New Revision: 422 Modified: maven-generator-plugin/trunk/pom.xml Log: utilisation de lutinproject 3.4 plutot que lutinpluginproject Modified: maven-generator-plugin/trunk/pom.xml =================================================================== --- maven-generator-plugin/trunk/pom.xml 2009-02-10 13:09:25 UTC (rev 421) +++ maven-generator-plugin/trunk/pom.xml 2009-02-10 13:49:20 UTC (rev 422) @@ -9,7 +9,7 @@ <!-- ************************************************************* --> <parent> <groupId>org.codelutin</groupId> - <artifactId>lutinpluginproject</artifactId> + <artifactId>lutinproject</artifactId> <version>3.4-SNAPSHOT</version> </parent> @@ -29,17 +29,30 @@ <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> - <version>1.7.1</version> + <version>${ant.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant-trax</artifactId> - <version>1.7.1</version> + <version>${ant.version}</version> <scope>runtime</scope> </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-plugin-api</artifactId> + <version>${maven.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-project</artifactId> + <version>${maven.version}</version> + <scope>provided</scope> + </dependency> </dependencies> <!-- ************************************************************* --> @@ -63,7 +76,8 @@ <!-- todo pour la montee de version voir la doc --> <lutingenerator.version>${project.version}</lutingenerator.version> - + <maven.version>2.0.9</maven.version> + <ant.version>1.7.1</ant.version> </properties> <build> @@ -71,29 +85,35 @@ <defaultGoal>install</defaultGoal> <plugins> + <!-- plugin plugin --> <plugin> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-maven-plugin</artifactId> - <version>1.3.8</version> + <artifactId>maven-plugin-plugin</artifactId> + <version>2.4.3</version> <executions> <execution> <goals> - <goal>descriptor</goal> + <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> + <!-- Always process jrst files, but only called on pre-site phase --> <plugin> - <artifactId>maven-plugin-plugin</artifactId> - <version>2.4.3</version> + <groupId>org.codelutin</groupId> + <artifactId>maven-jrst-plugin</artifactId> + <version>${jrst.version}</version> <configuration> - <requirements/> + <directoryIn>${maven.src.dir}/site</directoryIn> + <directoryOut>${maven.site.gen.dir}</directoryOut> + <defaultLocale>fr</defaultLocale> + <inputEncoding>${maven.compile.encoding}</inputEncoding> + <outputEncoding>${maven.compile.encoding}</outputEncoding> </configuration> <executions> <execution> <goals> - <goal>addPluginArtifactMetadata</goal> + <goal>jrst</goal> </goals> </execution> </executions> @@ -101,6 +121,15 @@ </plugins> </build> + <!--Site--> + <reporting> + <plugins> + <!--Site report's plugin--> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + </plugin> + </plugins> + </reporting> <!-- ************************************************************* --> <!-- *** Build Environment ************************************** --> @@ -113,4 +142,59 @@ <url>${maven.scm.url}</url> </scm> + <!--Code Lutin Repository--> + <repositories> + <repository> + <id>codelutin-repository</id> + <name>CodeLutinRepository</name> + <url>${labs.builder.url}</url> + <snapshots> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </snapshots> + <releases> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </releases> + </repository> + </repositories> + + <profiles> + <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