Author: tchemit Date: 2009-09-09 15:13:50 +0200 (Wed, 09 Sep 2009) New Revision: 30 Added: trunk/cash-ui/src/site/ trunk/cash-ui/src/site/rst/ trunk/cash-ui/src/site/rst/index.rst trunk/cash-ui/src/site/site.xml trunk/src/ trunk/src/site/ trunk/src/site/rst/ trunk/src/site/rst/index.rst trunk/src/site/site.xml Modified: trunk/ trunk/cash-business/pom.xml trunk/pom.xml Log: [Evolution #47] : faire le site maven, optimisation des dependances, ajout license, bump mavenpom to 1.0.2 Property changes on: trunk ___________________________________________________________________ Added: svn:ignore + target Modified: trunk/cash-business/pom.xml =================================================================== --- trunk/cash-business/pom.xml 2009-09-02 19:42:34 UTC (rev 29) +++ trunk/cash-business/pom.xml 2009-09-09 13:13:50 UTC (rev 30) @@ -1,7 +1,7 @@ <?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> + <modelVersion>4.0.0</modelVersion> <!-- ************************************************************* --> <!-- *** POM Relationships *************************************** --> @@ -31,8 +31,8 @@ <artifactId>oasis-ciq-api</artifactId> </dependency> <dependency> - <groupId>org.apache.xmlbeans</groupId> - <artifactId>xmlbeans</artifactId> + <groupId>org.apache.xmlbeans</groupId> + <artifactId>xmlbeans</artifactId> </dependency> <!-- ToPIA --> <dependency> @@ -57,6 +57,11 @@ <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </dependency> + <!-- junit --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </dependency> </dependencies> <!-- ************************************************************* --> <!-- *** Project Information ************************************* --> @@ -65,7 +70,8 @@ <name>Ca$h Business</name> <description>Métier de l'application Cash. Implémentation des services et gestion Base de données. - Les entités, services et DTO sont générés par ToPIA</description> + Les entités, services et DTO sont générés par ToPIA + </description> <!-- Developpers, contributors... --> <developers> Added: trunk/cash-ui/src/site/rst/index.rst =================================================================== --- trunk/cash-ui/src/site/rst/index.rst (rev 0) +++ trunk/cash-ui/src/site/rst/index.rst 2009-09-09 13:13:50 UTC (rev 30) @@ -0,0 +1,4 @@ +Ca$h-ui +======= + +A faire :) \ No newline at end of file Added: trunk/cash-ui/src/site/site.xml =================================================================== --- trunk/cash-ui/src/site/site.xml (rev 0) +++ trunk/cash-ui/src/site/site.xml 2009-09-09 13:13:50 UTC (rev 30) @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project name="${project.name}"> + + <bannerLeft> + <name>${project.name}</name> + <href>index.html</href> + </bannerLeft> + + <body> + + <breadcrumbs> + <item name="${project.name}" href="${project.url}" /> + </breadcrumbs> + + <menu ref="parent"/> + + <menu name="Utilisateurs"> + <item name="Accueil" href="index.html"/> + </menu> + + <menu name="Trackers"> + <item name="Bugs" href="${project.issueManagement.url}?query_id=1"/> + <item name="Améliorations" href="${project.issueManagement.url}?query_id=2"/> + <item name="Aide" href="${project.issueManagement.url}?query_id=3"/> + </menu> + + <menu ref="reports"/> + + </body> +</project> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2009-09-02 19:42:34 UTC (rev 29) +++ trunk/pom.xml 2009-09-09 13:13:50 UTC (rev 30) @@ -1,6 +1,6 @@ <?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> + <modelVersion>4.0.0</modelVersion> <!-- ************************************************************* --> <!-- *** POM Relationships *************************************** --> @@ -9,7 +9,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>mavenpom</artifactId> - <version>1.0.2-SNAPSHOT</version> + <version>1.0.2</version> </parent> <groupId>org.chorem</groupId> @@ -48,6 +48,39 @@ <groupId>org.nuiton.topia</groupId> <artifactId>topia-soa</artifactId> <version>${topia.version}</version> + <exclusions> + <!-- xfire --> + <exclusion> + <groupId>org.codehaus.xfire</groupId> + <artifactId>xfire-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.xfire</groupId> + <artifactId>xfire-aegis</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.xfire</groupId> + <artifactId>xfire-annotations</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.xfire</groupId> + <artifactId>xfire-java5</artifactId> + </exclusion> + + <!-- xmlrpc --> + <exclusion> + <groupId>org.apache.xmlrpc</groupId> + <artifactId>xmlrpc-common</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.xmlrpc</groupId> + <artifactId>xmlrpc-client</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.xmlrpc</groupId> + <artifactId>xmlrpc-server</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>commons-lang</groupId> @@ -55,9 +88,9 @@ <version>${lang.version}</version> </dependency> <dependency> - <groupId>org.apache.xmlbeans</groupId> - <artifactId>xmlbeans</artifactId> - <version>2.4.0</version> + <groupId>org.apache.xmlbeans</groupId> + <artifactId>xmlbeans</artifactId> + <version>2.4.0</version> </dependency> <dependency> <groupId>javax.servlet</groupId> @@ -81,10 +114,10 @@ <artifactId>chenillekit-tapestry</artifactId> <version>${chenillekit.version}</version> <exclusions> - <exclusion> - <groupId>jboss</groupId> - <artifactId>javassist</artifactId> - </exclusion> + <exclusion> + <groupId>jboss</groupId> + <artifactId>javassist</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -166,9 +199,13 @@ <!-- ui --> <tapestry.version>5.1.0.5</tapestry.version> <chenillekit.version>1.0.2</chenillekit.version> + + <!-- license to use --> + <license.licenseName>gpl_v3</license.licenseName> + </properties> - <build> + <build> <defaultGoal>install</defaultGoal> <pluginManagement> <plugins> @@ -178,7 +215,7 @@ <dependency> <groupId>org.nuiton.jrst</groupId> <artifactId>doxia-module-jrst</artifactId> - <version>1.0.0</version> + <version>${jrst.version}</version> </dependency> </dependencies> </plugin> Added: trunk/src/site/rst/index.rst =================================================================== --- trunk/src/site/rst/index.rst (rev 0) +++ trunk/src/site/rst/index.rst 2009-09-09 13:13:50 UTC (rev 30) @@ -0,0 +1,4 @@ +Ca$h +==== + +A faire :) \ No newline at end of file Added: trunk/src/site/site.xml =================================================================== --- trunk/src/site/site.xml (rev 0) +++ trunk/src/site/site.xml 2009-09-09 13:13:50 UTC (rev 30) @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project name="${project.name}"> + + <bannerLeft> + <name>${project.name}</name> + <href>index.html</href> + </bannerLeft> + + <poweredBy> + <logo href="http://maven.apache.org" name="Maven" img="${project.url}/images/logos/maven-feather.png"/> + <logo href="http://www.nuiton.org/projects/show/jrst" name="JRst" img="${project.url}/images/jrst-logo.png"/> + <logo href="http://docutils.sourceforge.net/rst.html" name="ReStructuredText" img="${project.url}/images/restructuredtext-logo.png"/> + </poweredBy> + + <body> + + <breadcrumbs> + <item name="${project.name}" href="${project.url}" /> + </breadcrumbs> + + <menu name="Utilisateurs"> + <item name="Accueil" href="index.html"/> + </menu> + + <menu ref="modules"/> + + <menu name="Trackers"> + <item name="Bugs" href="${project.issueManagement.url}?query_id=1"/> + <item name="Améliorations" href="${project.issueManagement.url}?query_id=2"/> + <item name="Aide" href="${project.issueManagement.url}?query_id=3"/> + </menu> + + <menu ref="reports"/> + + </body> +</project>