[Lutinutil-commits] r822 - in trunk: . commandline
Author: tchemit Date: 2008-07-08 14:42:27 +0000 (Tue, 08 Jul 2008) New Revision: 822 Added: trunk/commandline/ trunk/commandline/core/ trunk/commandline/maven/ trunk/commandline/pom.xml trunk/commandline/ui/ Removed: trunk/comandline/ trunk/commandline/core/ trunk/commandline/maven/ trunk/commandline/pom.xml trunk/commandline/ui/ Log: recuperation du project lutinlib:lutincommandline Copied: trunk/commandline (from rev 817, trunk/comandline) Copied: trunk/commandline/core (from rev 821, trunk/comandline/core) Copied: trunk/commandline/maven (from rev 821, trunk/comandline/maven) Deleted: trunk/commandline/pom.xml =================================================================== --- trunk/comandline/pom.xml 2008-07-08 14:17:38 UTC (rev 817) +++ trunk/commandline/pom.xml 2008-07-08 14:42:27 UTC (rev 822) @@ -1,288 +0,0 @@ -<?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"> - - <modelVersion>4.0.0</modelVersion> - - <!-- ************************************************************* --> - <!-- *** POM Relationships *************************************** --> - <!-- ************************************************************* --> - - <parent> - <groupId>lutinpom</groupId> - <artifactId>lutinproject</artifactId> - <version>2.3</version> - </parent> - - <groupId>org.codelutin.option</groupId> - <artifactId>lutincommandline</artifactId> - - <modules> - <module>core</module> - <module>ui</module> - <module>maven</module> - </modules> - - <dependencies> - <dependency> - <groupId>lutinlib</groupId> - <artifactId>lutinutil</artifactId> - </dependency> - </dependencies> - - <!-- ************************************************************* --> - <!-- *** Project Information ************************************* --> - <!-- ************************************************************* --> - <name>pom</name> - <version>0.5</version> - <description>lutincommandline library main pom</description> - <inceptionYear>2008</inceptionYear> - - <!-- Developpers, contributors... --> - <developers> - <developer> - <name>Tony Chemit</name> - <email>chemit@codelutin.com</email> - <organization>Code Lutin</organization> - <timezone>+2</timezone> - <roles> - <role>Developer</role> - </roles> - </developer> - </developers> - - <!-- ************************************************************* --> - <!-- *** Build Settings ****************************************** --> - <!-- ************************************************************* --> - - <packaging>pom</packaging> - - <build> - <plugins> - <!-- i18n --> - <plugin> - <groupId>lutinplugin</groupId> - <artifactId>maven-i18n-plugin</artifactId> - <configuration> - <bundles> - <param>fr_FR</param> - <param>en_GB</param> - </bundles> - <src>${maven.src.dir}/main/resources/i18n</src> - <defaultBasedir>${maven.src.dir}/main/java</defaultBasedir> - <keysModifier>false</keysModifier> - <keepBackup>false</keepBackup> - </configuration> - </plugin> - <!-- source--> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - <executions> - <execution> - <phase>install</phase> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - <!-- javadoc --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <executions> - <execution> - <phase>deploy</phase> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - <!-- jrst --> - <plugin> - <groupId>lutinplugin</groupId> - <artifactId>maven-jrst-plugin</artifactId> - <executions> - <execution> - <id>jrst</id> - <phase>test</phase> - <!-- test works better than pre:site --> - <goals> - <goal>jrst</goal> - </goals> - </execution> - </executions> - <configuration> - <directoryIn>${maven.src.dir}/site</directoryIn> - <directoryOut>${basedir}/target/generated-site/xdoc</directoryOut> - <verbose>${maven.verbose}</verbose> - </configuration> - </plugin> - <!-- site --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-site-plugin</artifactId> - <configuration> - <outputEncoding>${maven.compile.encoding}</outputEncoding> - <locales>fr</locales> - <siteDirectory>src/site</siteDirectory> - <generateReports>true</generateReports> - <xdocDirectory>${basedir}/target/generated-site/xdoc/fr/rst</xdocDirectory> - </configuration> - </plugin> - </plugins> - </build> - - - <properties> - - <!-- id du projet du labs --> - <labs.id>12</labs.id> - - <labs.project>lutinutil</labs.project> - - <!-- par defaut, mode non verbeux --> - <!--maven.verbose>false</maven.verbose--> - <!-- compile with ? --> - <maven.compile.source>1.6</maven.compile.source> - <maven.compile.target>1.6</maven.compile.target> - <maven.compile.encoding>ISO-8859-15</maven.compile.encoding> - - <!-- Lists URL --> - <labs.lists> - http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinutil - </labs.lists> - - <!-- maven will suffix with /${pom.artifactId} --> - <maven.scm.developerConnection>scm:svn:svn+ssh://tchemit@${labs.host}/svnroot/lutinutil/trunk - </maven.scm.developerConnection> - - <!-- maven will suffix with /${pom.artifactId} --> - <maven.scm.connection>scm:svn:svn:anonymous@${labs.host}/svnroot/lutinutil/trunk</maven.scm.connection> - - </properties> - - <profiles> - <profile> - <id>project</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - <properties> - <!-- test (par defaut, on ne les execute pas) --> - <maven.test.skip>true</maven.test.skip> - <maven.reports.generate>false</maven.reports.generate> - </properties> - </profile> - <profile> - <id>tests</id> - <activation> - <activeByDefault>false</activeByDefault> - </activation> - <properties> - <!-- test (par defaut, on ne les execute pas) --> - <maven.test.skip>false</maven.test.skip> - <maven.reports.generate>false</maven.reports.generate> - </properties> - </profile> - <profile> - <id>site</id> - <activation> - <activeByDefault>false</activeByDefault> - </activation> - <properties> - <!-- test (par defaut, on ne les execute pas) --> - <maven.test.skip>false</maven.test.skip> - <maven.reports.generate>true</maven.reports.generate> - </properties> - </profile> - </profiles> - - - <dependencyManagement> - <dependencies> - - <dependency> - <groupId>commons-lang</groupId> - <artifactId>commons-lang</artifactId> - <version>2.1</version> - <scope>compile</scope> - </dependency> - - <dependency> - <groupId>lutinlib</groupId> - <artifactId>lutinutil</artifactId> - <version>0.29</version> - </dependency> - - <dependency> - <groupId>lutinlib</groupId> - <artifactId>jaxx</artifactId> - <version>1.0.5</version> - </dependency> - - <dependency> - <groupId>org.codelutin.option</groupId> - <artifactId>core</artifactId> - <version>0.5</version> - </dependency> - - <dependency> - <groupId>org.codelutin.option</groupId> - <artifactId>ui</artifactId> - <version>0.5</version> - </dependency> - - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-plugin-api</artifactId> - <version>2.0.4</version> - </dependency> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-model</artifactId> - <version>2.0.4</version> - </dependency> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-project</artifactId> - <version>2.0.4</version> - </dependency> - <dependency> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-utils</artifactId> - <version>1.0.5</version> - </dependency> - <!-- Plugins --> - <dependency> - <groupId>lutinplugin</groupId> - <artifactId>maven-i18n-plugin</artifactId> - <version>0.2-SNAPSHOT</version> - </dependency> - - <dependency> - <groupId>lutinplugin</groupId> - <artifactId>maven-jrst-plugin</artifactId> - <version>0.8</version> - </dependency> - - <dependency> - <groupId>lutinplugin</groupId> - <artifactId>maven-jaxx-plugin</artifactId> - <version>0.4</version> - </dependency> - </dependencies> - </dependencyManagement> - - <!-- the project is a module in a labs project (lutinutil), so we have to override - this property (see in the parent pom for more explanation) - --> - <scm> - <developerConnection>${maven.scm.developerConnection}</developerConnection> - <!--url>${maven.scm.url}</url--> - </scm> - -</project> Copied: trunk/commandline/pom.xml (from rev 821, trunk/comandline/pom.xml) =================================================================== --- trunk/commandline/pom.xml (rev 0) +++ trunk/commandline/pom.xml 2008-07-08 14:42:27 UTC (rev 822) @@ -0,0 +1,289 @@ +<?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"> + + <modelVersion>4.0.0</modelVersion> + + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + + <parent> + <groupId>lutinpom</groupId> + <artifactId>lutinproject</artifactId> + <version>2.3</version> + </parent> + + <groupId>org.codelutin.commandline</groupId> + <artifactId>commandline-pom</artifactId> + + <modules> + <module>core</module> + <module>ui</module> + <module>maven</module> + </modules> + + <dependencies> + <dependency> + <groupId>lutinlib</groupId> + <artifactId>lutinutil</artifactId> + </dependency> + </dependencies> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + <name>pom</name> + <version>0.5</version> + <description>lutincommandline library main pom</description> + <inceptionYear>2008</inceptionYear> + + <!-- Developpers, contributors... --> + <developers> + <developer> + <name>Tony Chemit</name> + <email>chemit@codelutin.com</email> + <organization>Code Lutin</organization> + <timezone>+2</timezone> + <roles> + <role>Developer</role> + </roles> + </developer> + </developers> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + + <packaging>pom</packaging> + + <build> + <plugins> + <!-- i18n --> + <plugin> + <groupId>lutinplugin</groupId> + <artifactId>maven-i18n-plugin</artifactId> + <configuration> + <bundles> + <param>fr_FR</param> + <param>en_GB</param> + </bundles> + <src>${maven.src.dir}/main/resources/i18n</src> + <defaultBasedir>${maven.src.dir}/main/java</defaultBasedir> + <keysModifier>false</keysModifier> + <keepBackup>false</keepBackup> + </configuration> + </plugin> + <!-- source--> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <phase>install</phase> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <!-- javadoc --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <phase>deploy</phase> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <!-- jrst --> + <plugin> + <groupId>lutinplugin</groupId> + <artifactId>maven-jrst-plugin</artifactId> + <executions> + <execution> + <id>jrst</id> + <phase>test</phase> + <!-- test works better than pre:site --> + <goals> + <goal>jrst</goal> + </goals> + </execution> + </executions> + <configuration> + <directoryIn>${maven.src.dir}/site</directoryIn> + <directoryOut>${basedir}/target/generated-site/xdoc</directoryOut> + <verbose>${maven.verbose}</verbose> + </configuration> + </plugin> + <!-- site --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <configuration> + <outputEncoding>${maven.compile.encoding}</outputEncoding> + <locales>fr</locales> + <siteDirectory>src/site</siteDirectory> + <generateReports>true</generateReports> + <xdocDirectory>${basedir}/target/generated-site/xdoc/fr/rst</xdocDirectory> + </configuration> + </plugin> + </plugins> + </build> + + + <properties> + + <!-- id du projet du labs --> + <labs.id>12</labs.id> + + <labs.project>lutinutil</labs.project> + + <!-- par defaut, mode non verbeux --> + <!--maven.verbose>false</maven.verbose--> + <!-- compile with ? --> + <maven.compile.source>1.6</maven.compile.source> + <maven.compile.target>1.6</maven.compile.target> + <maven.compile.encoding>ISO-8859-15</maven.compile.encoding> + + <!-- Lists URL --> + <labs.lists> + http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinutil + </labs.lists> + + <!-- maven will suffix with /${pom.artifactId} --> + <maven.scm.developerConnection>scm:svn:svn+ssh://tchemit@${labs.host}/svnroot/lutinutil/trunk + </maven.scm.developerConnection> + + <!-- maven will suffix with /${pom.artifactId} --> + <maven.scm.connection>scm:svn:svn:anonymous@${labs.host}/svnroot/lutinutil/trunk</maven.scm.connection> + + </properties> + + <profiles> + <profile> + <id>project</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <properties> + <!-- test (par defaut, on ne les execute pas) --> + <maven.test.skip>true</maven.test.skip> + <maven.reports.generate>false</maven.reports.generate> + </properties> + </profile> + <profile> + <id>tests</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <properties> + <!-- test (par defaut, on ne les execute pas) --> + <maven.test.skip>false</maven.test.skip> + <maven.reports.generate>false</maven.reports.generate> + </properties> + </profile> + <profile> + <id>site</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <properties> + <!-- test (par defaut, on ne les execute pas) --> + <maven.test.skip>false</maven.test.skip> + <maven.reports.generate>true</maven.reports.generate> + </properties> + </profile> + </profiles> + + + <dependencyManagement> + <dependencies> + + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>2.1</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>lutinlib</groupId> + <artifactId>lutinutil</artifactId> + <version>0.29</version> + </dependency> + + <dependency> + <groupId>lutinlib</groupId> + <artifactId>jaxx</artifactId> + <version>1.0.5</version> + </dependency> + + <dependency> + <groupId>org.codelutin.commandline</groupId> + <artifactId>core</artifactId> + <version>0.5</version> + </dependency> + + <dependency> + <groupId>org.codelutin.commandline</groupId> + <artifactId>ui</artifactId> + <version>0.5</version> + </dependency> + + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-plugin-api</artifactId> + <version>2.0.4</version> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-model</artifactId> + <version>2.0.4</version> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-project</artifactId> + <version>2.0.4</version> + </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-utils</artifactId> + <version>1.0.5</version> + </dependency> + + <!-- Plugins --> + <dependency> + <groupId>lutinplugin</groupId> + <artifactId>maven-i18n-plugin</artifactId> + <version>0.3</version> + </dependency> + + <dependency> + <groupId>lutinplugin</groupId> + <artifactId>maven-jrst-plugin</artifactId> + <version>0.8</version> + </dependency> + + <dependency> + <groupId>lutinplugin</groupId> + <artifactId>maven-jaxx-plugin</artifactId> + <version>0.4</version> + </dependency> + </dependencies> + </dependencyManagement> + + <!-- the project is a module in a labs project (lutinutil), so we have to override + this property (see in the parent pom for more explanation) + --> + <scm> + <developerConnection>${maven.scm.developerConnection}</developerConnection> + <!--url>${maven.scm.url}</url--> + </scm> + +</project> Copied: trunk/commandline/ui (from rev 821, trunk/comandline/ui)
participants (1)
-
tchemit@users.labs.libre-entreprise.org