Author: jcouteau Date: 2010-11-05 10:05:49 +0100 (Fri, 05 Nov 2010) New Revision: 13 Url: http://chorem.org/repositories/revision/incubator/13 Log: Add entities module Modified: refComp/pom.xml Modified: refComp/pom.xml =================================================================== --- refComp/pom.xml 2010-11-05 09:05:34 UTC (rev 12) +++ refComp/pom.xml 2010-11-05 09:05:49 UTC (rev 13) @@ -23,6 +23,7 @@ <modules> <module>client</module> <module>services</module> + <module>entities</module> </modules> @@ -33,7 +34,7 @@ <name>RefComp</name> <description> - Software to create a knowledge database about people competences. + Software to create a knowledge database about people skills. </description> <inceptionYear>2010</inceptionYear> @@ -62,12 +63,14 @@ <properties> - <projectId>Episodes Manager</projectId> + <projectId>Ref Comp</projectId> <labs.id>---</labs.id> <!-- libraries version --> <gwtVersion>2.0.3</gwtVersion> + <wikittyVersion>3.0-SNAPSHOT</wikittyVersion> + <generatorPluginVersion>2.2</generatorPluginVersion> </properties> <dependencyManagement> @@ -86,6 +89,50 @@ <version>${gwtVersion}</version> <scope>provided</scope> </dependency> + + <!-- Wikitty dependencies --> + + <dependency> + <groupId>org.nuiton.wikitty</groupId> + <artifactId>wikitty-api</artifactId> + <version>${wikittyVersion}</version> + </dependency> + <dependency> + <groupId>org.nuiton.wikitty</groupId> + <artifactId>wikitty-jdbc-impl</artifactId> + <version>${wikittyVersion}</version> + </dependency> + <dependency> + <groupId>org.nuiton.wikitty</groupId> + <artifactId>wikitty-solr-impl</artifactId> + <version>${wikittyVersion}</version> + </dependency> + <dependency> + <groupId>org.apache.lucene</groupId> + <artifactId>lucene-core</artifactId> + <version>2.9.3</version> + <scope>compile</scope> + </dependency> + + + <!-- base h2 --> + <dependency> + <groupId>com.h2database</groupId> + <artifactId>h2</artifactId> + <!-- Don't use < 1.1 or > 1.2.129 without testing migration + with old datas --> + <version>1.2.127</version> + <scope>runtime</scope> + </dependency> + + <!-- base postgres --> + <dependency> + <groupId>postgresql</groupId> + <artifactId>postgresql</artifactId> + <version>8.4-701.jdbc4</version> + <scope>runtime</scope> + </dependency> + </dependencies> </dependencyManagement> @@ -102,12 +149,13 @@ <execution> <goals> <goal>compile</goal> - <!--goal>test</goal--> + <!--goal>test</goal--> </goals> </execution> </executions> <configuration> - <runTarget>fr.inra.refcomp.Login/Login.html</runTarget> + <hostedWebapp>src/main/webapp</hostedWebapp> + <runTarget>fr.inra.refcomp.RefComp/RefComp.html</runTarget> <noServer>false</noServer> <gwtVersion>${gwtVersion}</gwtVersion> </configuration> @@ -119,6 +167,7 @@ <configuration> <filesets> <fileset> + <!--TODO jcouteau 04/11/2010 reconfigure this now that everything is in src/main/webapp--> <directory>war</directory> </fileset> </filesets> @@ -126,6 +175,32 @@ </plugin> + <!-- eugene plugin --> + <plugin> + <groupId>org.nuiton.eugene</groupId> + <artifactId>maven-eugene-plugin</artifactId> + <version>${generatorPluginVersion}</version> + <dependencies> + <dependency> + <groupId>org.nuiton.wikitty</groupId> + <artifactId>wikitty-generators</artifactId> + <version>${wikittyVersion}</version> + </dependency> + </dependencies> + </plugin> + + <!-- plugin site --> + <plugin> + <artifactId>maven-site-plugin</artifactId> + <dependencies> + <dependency> + <groupId>org.nuiton.jrst</groupId> + <artifactId>doxia-module-jrst</artifactId> + <version>${jrstPluginVersion}</version> + </dependency> + </dependencies> + </plugin> + </plugins> </pluginManagement>
participants (1)
-
jcouteau@users.chorem.org