|
From: <de...@us...> - 2017-06-07 20:45:55
|
Revision: 9637
http://sourceforge.net/p/fudaa/svn/9637
Author: deniger
Date: 2017-06-07 20:45:53 +0000 (Wed, 07 Jun 2017)
Log Message:
-----------
verification commit sur branche
Added Paths:
-----------
branches/fudaa_crue_aoc/crue-aoc/
branches/fudaa_crue_aoc/crue-aoc/pom.xml
branches/fudaa_crue_aoc/crue-aoc/src/
branches/fudaa_crue_aoc/crue-aoc/src/main/
branches/fudaa_crue_aoc/crue-aoc/src/main/java/
branches/fudaa_crue_aoc/crue-aoc/src/main/java/org/
branches/fudaa_crue_aoc/crue-aoc/src/main/java/org/fudaa/
branches/fudaa_crue_aoc/crue-aoc/src/main/java/org/fudaa/dodico/
branches/fudaa_crue_aoc/crue-aoc/src/main/java/org/fudaa/dodico/crue/
branches/fudaa_crue_aoc/crue-aoc/src/main/resources/
branches/fudaa_crue_aoc/crue-aoc/src/test/
branches/fudaa_crue_aoc/crue-aoc/src/test/java/
branches/fudaa_crue_aoc/crue-aoc/src/test/java/org/
branches/fudaa_crue_aoc/crue-aoc/src/test/java/org/fudaa/
branches/fudaa_crue_aoc/crue-aoc/src/test/java/org/fudaa/dodico/
branches/fudaa_crue_aoc/crue-aoc/src/test/java/org/fudaa/dodico/crue/
branches/fudaa_crue_aoc/crue-aoc/src/test/resources/
branches/fudaa_crue_aoc/ui-aoc/
branches/fudaa_crue_aoc/ui-aoc/src/
branches/fudaa_crue_aoc/ui-aoc/src/main/
branches/fudaa_crue_aoc/ui-aoc/src/main/nbm/
branches/fudaa_crue_aoc/ui-aoc/src/main/nbm/module.xml
Added: branches/fudaa_crue_aoc/crue-aoc/pom.xml
===================================================================
--- branches/fudaa_crue_aoc/crue-aoc/pom.xml (rev 0)
+++ branches/fudaa_crue_aoc/crue-aoc/pom.xml 2017-06-07 20:45:53 UTC (rev 9637)
@@ -0,0 +1,107 @@
+<?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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>fudaa-crue</artifactId>
+ <groupId>org.fudaa.soft.fudaa-crue</groupId>
+ <version>1.4-SNAPSHOT</version>
+ </parent>
+ <artifactId>crue-aoc</artifactId>
+ <name>Crue AOC</name>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>test-jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <parallel>classes</parallel>
+ <threadCount>5</threadCount>
+ </configuration>
+ </plugin>
+ </plugins>
+
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.fudaa.soft.fudaa-crue</groupId>
+ <artifactId>crue-project</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.fudaa.soft.fudaa-crue</groupId>
+ <artifactId>crue-compare</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.fudaa.soft.fudaa-crue</groupId>
+ <artifactId>crue-core</artifactId>
+ <scope>test</scope>
+ <type>test-jar</type>
+ </dependency>
+ <dependency>
+ <groupId>org.fudaa.soft.fudaa-crue</groupId>
+ <artifactId>crue-io</artifactId>
+ <scope>test</scope>
+ <type>test-jar</type>
+ </dependency>
+ <dependency>
+ <groupId>org.fudaa.soft.fudaa-crue</groupId>
+ <artifactId>crue-config</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.fudaa.soft.fudaa-crue</groupId>
+ <artifactId>crue-config</artifactId>
+ <scope>test</scope>
+ <type>test-jar</type>
+ </dependency>
+ <dependency>
+ <groupId>org.fudaa.soft.fudaa-crue</groupId>
+ <artifactId>crue-test</artifactId>
+ <scope>test</scope>
+ <type>test-jar</type>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <!--pour eviter de lancer les tests d'integration-->
+ <profiles>
+ <profile>
+ <id>release</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.keyboardsamurais.maven</groupId>
+ <artifactId>maven-timestamp-plugin</artifactId>
+ <version>1.0</version>
+ <configuration>
+ <propertyName>timestamp</propertyName>
+ <timestampPattern>dd.MM.yyyy HH:mm</timestampPattern>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+</project>
Added: branches/fudaa_crue_aoc/ui-aoc/src/main/nbm/module.xml
===================================================================
--- branches/fudaa_crue_aoc/ui-aoc/src/main/nbm/module.xml (rev 0)
+++ branches/fudaa_crue_aoc/ui-aoc/src/main/nbm/module.xml 2017-06-07 20:45:53 UTC (rev 9637)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<nbm>
+ <!--
+ <moduleType>autoload</moduleType>
+ <codeNameBase>org.fudaa.fudaa.test.uiotfa/1</codeNameBase>
+ <licenseName>Apache License, Version 2.0</licenseName>
+ <licenseFile>license.txt</licenseFile>
+ -->
+</nbm>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|