[Lutingenerator-commits] r398 - lutingenerator-demo/trunk
Author: tchemit Date: 2008-12-10 15:44:06 +0000 (Wed, 10 Dec 2008) New Revision: 398 Added: lutingenerator-demo/trunk/README.txt lutingenerator-demo/trunk/changelog.txt Removed: lutingenerator-demo/trunk/changelog Modified: lutingenerator-demo/trunk/pom.xml Log: passage en lutinproject 3.2 Copied: lutingenerator-demo/trunk/README.txt (from rev 389, maven-generator-plugin/trunk/README.txt) =================================================================== --- lutingenerator-demo/trunk/README.txt (rev 0) +++ lutingenerator-demo/trunk/README.txt 2008-12-10 15:44:06 UTC (rev 398) @@ -0,0 +1,2 @@ +To deploy new version of pom: mvn deploy +To install localy: mvn install Property changes on: lutingenerator-demo/trunk/README.txt ___________________________________________________________________ Name: svn:mergeinfo + Deleted: lutingenerator-demo/trunk/changelog =================================================================== --- lutingenerator-demo/trunk/changelog 2008-12-10 15:07:33 UTC (rev 397) +++ lutingenerator-demo/trunk/changelog 2008-12-10 15:44:06 UTC (rev 398) @@ -1,8 +0,0 @@ -ver-0-1 thimel 20080430 - - * Web UI - * 3 steps generation : choose generator, choose model, generate - * Upload user models (deleted when user session ends) - * Download generation result - * Online .objectmodel and .statemodel view - \ No newline at end of file Copied: lutingenerator-demo/trunk/changelog.txt (from rev 382, lutingenerator-demo/trunk/changelog) =================================================================== --- lutingenerator-demo/trunk/changelog.txt (rev 0) +++ lutingenerator-demo/trunk/changelog.txt 2008-12-10 15:44:06 UTC (rev 398) @@ -0,0 +1,11 @@ +0.2 ??? 200812?? + * 20081210 chemit use lutinproject 3.2, and new libraries version (generator,...) + +ver-0-1 thimel 20080430 + + * Web UI + * 3 steps generation : choose generator, choose model, generate + * Upload user models (deleted when user session ends) + * Download generation result + * Online .objectmodel and .statemodel view + \ No newline at end of file Property changes on: lutingenerator-demo/trunk/changelog.txt ___________________________________________________________________ Name: svn:keywords + Author Date Id Revision Name: svn:eol-style + native Modified: lutingenerator-demo/trunk/pom.xml =================================================================== --- lutingenerator-demo/trunk/pom.xml 2008-12-10 15:07:33 UTC (rev 397) +++ lutingenerator-demo/trunk/pom.xml 2008-12-10 15:44:06 UTC (rev 398) @@ -1,133 +1,45 @@ <?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"> +<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> - <!--lutinproject.xml--> -<!-- + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> <parent> - <groupId>lutinlib</groupId> + <groupId>org.codelutin</groupId> <artifactId>lutinproject</artifactId> - <version>2.2</version> + <version>3.2</version> </parent> ---> - - <distributionManagement> - <site> - <id>labs</id> - <url>scp://labs.libre-entreprise.org/home/groups/${pom.artifactId}/htdocs/</url> - </site> - <repository> - <id>labs</id> - <url>scp://labs.libre-entreprise.org/home/groups/lutinbuilder/htdocs/maven2</url> - </repository> - </distributionManagement> - <!--A unique name for this project--> - <groupId>lutinlib</groupId> <artifactId>lutingenerator-demo</artifactId> - <name>LutinGeneratorDemo</name> - - <!--ejb, jar, war...--> - <packaging>war</packaging> - - <!--Version--> - <version>0.1</version> - - <!--Description--> - <description> - Site de demo de Lutin Generator. - </description> - <inceptionYear>2007</inceptionYear> - - <!--Tracking--> - <issueManagement> - <url>http://labs.libre-entreprise.org/tracker/?group_id=39</url> - </issueManagement> - - <!--who the developers are for the project--> - <contributors> - <contributor> - <name>Arnaud Thimel</name> - <email>thimel@codelutin.com</email> - <timezone>+2</timezone> - <roles> - <role>Developpeur</role> - </roles> - </contributor> - </contributors> + <version>0.2-SNAPSHOT</version> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <executions> - <execution> - <phase>verify</phase> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <executions> - <execution> - <phase>verify</phase> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - - <!--Librairies--> <dependencies> - <!--Compile--> + <dependency> - <groupId>lutinlib</groupId> + <groupId>org.codelutin.topia</groupId> + <artifactId>topia-persistence</artifactId> + <version>${topia.version}</version> + <scope>runtime</scope> + </dependency> + + <dependency> + <groupId>org.codelutin</groupId> <artifactId>lutinutil</artifactId> - <version>0.29-SNAPSHOT</version> + <version>${lutinutil.version}</version> <scope>compile</scope> </dependency> + <dependency> - <groupId>lutinlib</groupId> + <groupId>org.codelutin</groupId> <artifactId>lutingenerator</artifactId> - <version>0.51-SNAPSHOT</version> + <version>${generator.version}</version> <scope>compile</scope> </dependency> + <dependency> - <groupId>commons-logging</groupId> - <artifactId>commons-logging</artifactId> - <version>1.1</version> - <scope>compile</scope> - </dependency> - <dependency> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> <version>2.0.8</version> @@ -147,7 +59,7 @@ <version>2.0</version> <scope>provided</scope> </dependency> - + <!--Runtime--> <dependency> <groupId>taglibs</groupId> @@ -206,41 +118,75 @@ <version>1.1</version> <scope>runtime</scope> </dependency> - <dependency> - <groupId>lutinlib</groupId> - <artifactId>topia</artifactId> - <version>2.0.26-SNAPSHOT</version> - <scope>runtime</scope> - </dependency> - <!-- Test --> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>test</scope> - </dependency> </dependencies> - <profiles> - <profile> - <id>project</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - <properties> - <maven.test.skip>false</maven.test.skip> - <maven.compile.source>1.5</maven.compile.source> - <maven.compile.target>1.5</maven.compile.target> - <maven.verbose>true</maven.verbose> - </properties> - <pluginRepositories> - <pluginRepository> - <id>codelutin-plugins</id> - <url>http://lutinbuilder.labs.libre-entreprise.org/maven2</url> - </pluginRepository> - </pluginRepositories> - </profile> - </profiles> + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + + <name>LutinGeneratorDemo</name> + <description>Site de demo de Lutin Generator.</description> + <inceptionYear>2007</inceptionYear> + + <contributors> + <contributor> + <name>Arnaud Thimel</name> + <email>thimel@codelutin.com</email> + <timezone>+2</timezone> + <roles> + <role>Developpeur</role> + </roles> + </contributor> + </contributors> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + + <packaging>war</packaging> + + + <properties> + + <!-- id du projet du labs --> + <labs.id>39</labs.id> + + <!-- name du projet du labs --> + <labs.project>lutingenerator</labs.project> + + <!-- generator version --> + <generator.version>0.62</generator.version> + + <!-- processor version --> + <processor.version>0.16</processor.version> + + <!-- lutinutil version --> + <lutinutil.version>1.0</lutinutil.version> + + <!-- topia version --> + <topia.version>2.1.0</topia.version> + + </properties> + + <build> + <plugins> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + </plugin> + </plugins> + </build> + + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> + + <!--Source control management--> + <scm> + <connection>${maven.scm.connection}</connection> + <developerConnection>${maven.scm.developerConnection}</developerConnection> + <url>${maven.scm.url}</url> + </scm> + </project>
participants (1)
-
tchemit@users.labs.libre-entreprise.org