From: <de...@us...> - 2012-04-19 05:59:22
|
Revision: 7083 http://fudaa.svn.sourceforge.net/fudaa/?rev=7083&view=rev Author: deniger Date: 2012-04-19 05:59:15 +0000 (Thu, 19 Apr 2012) Log Message: ----------- rpti ok Modified Paths: -------------- trunk/soft/fudaa-crue/crue-server/pom.xml trunk/soft/fudaa-crue/pom.xml Modified: trunk/soft/fudaa-crue/crue-server/pom.xml =================================================================== --- trunk/soft/fudaa-crue/crue-server/pom.xml 2012-04-18 21:17:34 UTC (rev 7082) +++ trunk/soft/fudaa-crue/crue-server/pom.xml 2012-04-19 05:59:15 UTC (rev 7083) @@ -72,7 +72,6 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <scope>test</scope> </dependency> <dependency> <groupId>commons-jxpath</groupId> Modified: trunk/soft/fudaa-crue/pom.xml =================================================================== --- trunk/soft/fudaa-crue/pom.xml 2012-04-18 21:17:34 UTC (rev 7082) +++ trunk/soft/fudaa-crue/pom.xml 2012-04-19 05:59:15 UTC (rev 7083) @@ -28,7 +28,6 @@ </properties> <modules> <module>crue-server</module> -<!-- <module>crue-ui</module>--> <module>ui-common</module> <module>ui-branding</module> <module>ui-study</module> @@ -40,9 +39,11 @@ <module>ui-emh</module> <module>ui-comparison</module> <module>ui-loader</module> + <module>ui-commandline</module> </modules> <dependencyManagement> <dependencies> + <dependency> <groupId>org.fudaa.framework.fudaa</groupId> <artifactId>fudaa-common</artifactId> @@ -50,7 +51,14 @@ <type>pom</type> <scope>import</scope> </dependency> + <!--pour les tests--> <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.8.1</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>common-jxpath</groupId> <artifactId>common-jxpath</artifactId> <version>1.3</version> @@ -127,8 +135,9 @@ </dependency> <dependency> <groupId>org.fudaa.soft.fudaa-crue</groupId> - <artifactId>crue-ui</artifactId> + <artifactId>ui-commandline</artifactId> <version>${project.version}</version> + <type>nbm</type> </dependency> <!-- Externes --> @@ -145,8 +154,23 @@ </dependencies> </dependencyManagement> <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.12</version> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.12</version> + </plugin> + + <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>nbm-maven-plugin</artifactId> <version>3.5</version> @@ -156,6 +180,7 @@ <cluster>${brandingToken}</cluster> </configuration> </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> @@ -176,4 +201,23 @@ </plugin> </plugins> </build> + <!--pour éviter de lancer les tests d'intégration--> + <profiles> + <profile> + <id>noIntegrationTests</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludedGroups>org.fudaa.dodico.crue.common.TestIntegration.class</excludedGroups> + <parallel>methods</parallel> + <threadCount>5</threadCount> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |