[Lutinprocessor-commits] r163 - maven-processor-plugin/trunk
Author: tchemit Date: 2009-02-18 09:10:53 +0000 (Wed, 18 Feb 2009) New Revision: 163 Added: maven-processor-plugin/trunk/README.txt maven-processor-plugin/trunk/changelog.txt Modified: maven-processor-plugin/trunk/pom.xml Log: * Parent is org.codelutin:lutinproject:3.4 * use same version as maven-processor-plugin Added: maven-processor-plugin/trunk/README.txt =================================================================== --- maven-processor-plugin/trunk/README.txt (rev 0) +++ maven-processor-plugin/trunk/README.txt 2009-02-18 09:10:53 UTC (rev 163) @@ -0,0 +1,2 @@ +To deploy new version of pom: mvn deploy +To install localy: mvn install Copied: maven-processor-plugin/trunk/changelog.txt (from rev 158, maven-processor-plugin/trunk/changelog) =================================================================== --- maven-processor-plugin/trunk/changelog.txt (rev 0) +++ maven-processor-plugin/trunk/changelog.txt 2009-02-18 09:10:53 UTC (rev 163) @@ -0,0 +1,12 @@ +ver-0-17 ??? (200902??) + * Parent is org.codelutin:lutinproject:3.4 + * use same version as maven-processor-plugin + +ver-0-16 thimel 20080925 + * Using lutinpluginutil from this plugin dependencies directly + +ver-0-15 thimel 20080922 + * Added changelog + * plugin is now a lutinpluginproject 3.0 + * groupId is org.codelutin + * compatible with maven2 standard structure Property changes on: maven-processor-plugin/trunk/changelog.txt ___________________________________________________________________ Name: svn:mergeinfo + Modified: maven-processor-plugin/trunk/pom.xml =================================================================== --- maven-processor-plugin/trunk/pom.xml 2009-02-18 09:10:29 UTC (rev 162) +++ maven-processor-plugin/trunk/pom.xml 2009-02-18 09:10:53 UTC (rev 163) @@ -2,48 +2,45 @@ <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"> - <!--The version of maven's project object model--> <modelVersion>4.0.0</modelVersion> - <!-- parent --> + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + <parent> - <groupId>org.codelutin</groupId> - <artifactId>lutinpluginproject</artifactId> - <version>3.0</version> - </parent> + <groupId>org.codelutin</groupId> + <artifactId>lutinproject</artifactId> + <version>3.4-SNAPSHOT</version> + </parent> - <!--A unique name for this project--> - <groupId>org.codelutin</groupId> <artifactId>maven-processor-plugin</artifactId> - <name>Plugin maven Lutin Processor</name> + <version>0.17-SNAPSHOT</version> - <!--ejb, jar, war...--> - <packaging>maven-plugin</packaging> + <dependencies> - <!--Version--> - <version>0.17-SNAPSHOT</version> + <dependency> + <groupId>org.codelutin</groupId> + <artifactId>lutinprocessor</artifactId> + <version>${project.version}</version> + <scope>compile</scope> + </dependency> - <!--Description--> - <inceptionYear>2006</inceptionYear> + <dependency> + <groupId>org.codelutin</groupId> + <artifactId>lutinpluginutil</artifactId> + <version>${lutinpluginutil.version}</version> + <scope>compile</scope> + </dependency> - <properties> - <!-- id du projet du labs --> - <labs.id>28</labs.id> + </dependencies> - <!-- nom du projet sur le labs --> - <labs.project>lutinprocessor</labs.project> - - <!-- Test --> - <maven.test.skip>false</maven.test.skip> - </properties> + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + <name>Plugin maven Lutin Processor</name> + <inceptionYear>2006</inceptionYear> - <!--Source control management--> - <scm> - <connection>${maven.scm.connection}</connection> - <developerConnection>${maven.scm.developerConnection}</developerConnection> - <url>${maven.scm.url}</url> - </scm> - <!--who the developers are for the project--> <contributors> <contributor> @@ -57,24 +54,135 @@ </contributor> </contributors> + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> - <!--Librairies--> - <dependencies> + <packaging>maven-plugin</packaging> - <dependency> - <groupId>org.codelutin</groupId> - <artifactId>lutinprocessor</artifactId> - <version>0.15</version> - <scope>compile</scope> - </dependency> + <properties> + <!-- id du projet du labs --> + <labs.id>28</labs.id> - <dependency> - <groupId>org.codelutin</groupId> - <artifactId>lutinpluginutil</artifactId> - <version>0.2</version> - <scope>compile</scope> - </dependency> + <!-- nom du projet sur le labs --> + <labs.project>lutinprocessor</labs.project> + + </properties> - </dependencies> + <build> + <defaultGoal>install</defaultGoal> + <plugins> + + <!-- plugin plugin --> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + <version>2.4.3</version> + <executions> + <execution> + <goals> + <goal>helpmojo</goal> + </goals> + </execution> + </executions> + </plugin> + + <!-- Always process jrst files, but only called on pre-site phase --> + <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> + </build> + + <!--Site--> + <reporting> + <plugins> + <!--Site report's plugin--> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + </plugin> + </plugins> + </reporting> + + + <!-- ************************************************************* --> + <!-- *** 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