Author: tchemit Date: 2008-09-22 09:14:12 +0000 (Mon, 22 Sep 2008) New Revision: 1075 Removed: trunk/maven-license-switcher-plugin/THIRD-PARTY.txt Modified: trunk/maven-license-switcher-plugin/pom.xml Log: using lutinpluginproject 3.0 remove third-party.txt Deleted: trunk/maven-license-switcher-plugin/THIRD-PARTY.txt =================================================================== --- trunk/maven-license-switcher-plugin/THIRD-PARTY.txt 2008-09-02 14:37:00 UTC (rev 1074) +++ trunk/maven-license-switcher-plugin/THIRD-PARTY.txt 2008-09-22 09:14:12 UTC (rev 1075) @@ -1,29 +0,0 @@ -List of third-party dependencies grouped by their license type. - -Common Public License Version 1.0 : - * JUnit (junit:junit:3.8.1 - http://junit.org) - -LGPL : - * Lutin file processor (org.codelutin:lutinprocessor:0.14 - http://labs.libre-entreprise.org/projects/lutinbuilder) - * Lutin plugin utilities library (org.codelutin:lutinpluginutil:0.1 - http://labs.libre-entreprise.org/projects/lutinutil) - -The Apache Software License, Version 2.0 : - * Commons Logging (commons-logging:commons-logging:1.1.1 - http://commons.apache.org/logging) - * Maven Artifact (org.apache.maven:maven-artifact:2.0.4 - http://maven.apache.org/maven-artifact) - * Maven Artifact Manager (org.apache.maven:maven-artifact-manager:2.0.4 - http://maven.apache.org/maven-artifact-manager) - * Maven Dependency Tree (org.apache.maven.shared:maven-dependency-tree:1.1 - http://maven.apache.org/shared/maven-dependency-tree) - * Maven Local Settings Model (org.apache.maven:maven-settings:2.0.4 - http://maven.apache.org/maven-settings) - * Maven Model (org.apache.maven:maven-model:2.0.4 - http://maven.apache.org/maven-model) - * Maven Plugin API (org.apache.maven:maven-plugin-api:2.0.4 - http://maven.apache.org/maven-plugin-api) - * Maven Profile Model (org.apache.maven:maven-profile:2.0.4 - http://maven.apache.org/maven-profile) - * Maven Project Builder (org.apache.maven:maven-project:2.0.4 - http://maven.apache.org/maven-project) - * Maven Project Builder (org.apache.maven:maven-project:2.0.8 - http://maven.apache.org/maven-project) - * Maven Repository Metadata Model (org.apache.maven:maven-repository-metadata:2.0.4 - http://maven.apache.org/maven-repository-metadata) - * Maven Wagon API (org.apache.maven.wagon:wagon-provider-api:1.0-alpha-6 - no url defined) - * Unnamed - ant:ant:jar:1.6.5 (ant:ant:1.6.5 - http://www.apache.org/ant) - -Unknown license : - * Default Plexus Container (org.codehaus.plexus:plexus-container-default:1.0-alpha-9 - no url defined) - * Plexus Common Utilities (org.codehaus.plexus:plexus-utils:1.0.4 - no url defined) - * Plexus Common Utilities (org.codehaus.plexus:plexus-utils:1.1 - no url defined) - * classworlds (classworlds:classworlds:1.1-alpha-2 - http://classworlds.codehaus.org/) \ No newline at end of file Modified: trunk/maven-license-switcher-plugin/pom.xml =================================================================== --- trunk/maven-license-switcher-plugin/pom.xml 2008-09-02 14:37:00 UTC (rev 1074) +++ trunk/maven-license-switcher-plugin/pom.xml 2008-09-22 09:14:12 UTC (rev 1075) @@ -9,35 +9,21 @@ <!-- ************************************************************* --> <parent> <groupId>org.codelutin</groupId> - <artifactId>lutinproject</artifactId> - <version>2.4</version> + <artifactId>lutinpluginproject</artifactId> + <version>3.0</version> </parent> - <groupId>org.codelutin.plugin</groupId> + <groupId>org.codelutin.plugins</groupId> <artifactId>maven-license-switcher-plugin</artifactId> <dependencies> <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-plugin-api</artifactId> - <version>2.0.4</version> - <scope>compile</scope> - </dependency> - - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-project</artifactId> - <version>2.0.4</version> - <scope>compile</scope> - </dependency> - - <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-dependency-tree</artifactId> <version>1.1</version> </dependency> - + <dependency> <groupId>org.codelutin</groupId> <artifactId>lutinprocessor</artifactId> @@ -45,20 +31,13 @@ <scope>compile</scope> </dependency> - <dependency> - <groupId>org.codelutin</groupId> - <artifactId>lutinpluginutil</artifactId> - <version>0.1</version> - <scope>compile</scope> - </dependency> - </dependencies> <!-- ************************************************************* --> <!-- *** Project Information ************************************* --> <!-- ************************************************************* --> <name>Plugin maven pour switcher les licenses</name> - <version>0.1</version> + <version>0.2</version> <description>Plugin pour switcher de license dans un module maven 2</description> <inceptionYear>2008</inceptionYear> @@ -74,15 +53,27 @@ <build> <plugins> + <!-- plugin jrst --> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-plugin-plugin</artifactId> - </plugin> - - <!-- jrst --> - <plugin> <groupId>lutinplugin</groupId> <artifactId>maven-jrst-plugin</artifactId> + <version>0.8</version> + <configuration> + <directoryIn>${maven.src.dir}/site</directoryIn> + <directoryOut>${maven.site.gen.dir}</directoryOut> + <verbose>${maven.verbose}</verbose> + <defaultLocale>fr</defaultLocale> + <inputEncoding>${maven.compile.encoding}</inputEncoding> + <outputEncoding>${maven.compile.encoding}</outputEncoding> + </configuration> + <executions> + <execution> + <phase>pre-site</phase> + <goals> + <goal>jrst</goal> + </goals> + </execution> + </executions> </plugin> </plugins> @@ -110,16 +101,4 @@ <url>${maven.scm.url}</url> </scm> - <reporting> - <plugins> - - <!--Site report's plugin--> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-plugin-plugin</artifactId> - </plugin> - - </plugins> - </reporting> - </project>