This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository wao. See http://git.codelutin.com/wao.git commit a00ca197677e60c893fe2147f3066be04d7752e2 Author: Brendan Le Ny <bleny@codelutin.com> Date: Wed Oct 8 17:30:03 2014 +0200 Migration du projet vers git --- .gitignore | 4 ++++ pom.xml | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++----- 2 files changed, 62 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5120dd6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.iml +.idea +*~ +target diff --git a/pom.xml b/pom.xml index 327feb2..7ea24b3 100644 --- a/pom.xml +++ b/pom.xml @@ -4,8 +4,8 @@ <parent> <groupId>org.nuiton</groupId> - <artifactId>mavenpom4redmine</artifactId> - <version>5.0.8</version> + <artifactId>pom</artifactId> + <version>1.3</version> </parent> <groupId>fr.ifremer</groupId> @@ -86,13 +86,15 @@ </modules> <scm> - <connection>scm:svn:http://svn.codelutin.com/wao/trunk</connection> - <developerConnection>scm:svn:https://svn.codelutin.com/wao/trunk</developerConnection> - <url>https://forge.codelutin.com/repositories/browse/wao/trunk</url> + <connection>scm:git:http://git.codelutin.com/wao.git</connection> + <developerConnection>scm:git:https://git.codelutin.com/wao.git</developerConnection> + <url>https://gitweb.codelutin.com/wao.git</url> </scm> <properties> + <maven.gen.dir>${project.build.directory}/generated-sources</maven.gen.dir> + <license.licenseName>agpl_v3</license.licenseName> <!-- redmine configuration --> @@ -100,6 +102,14 @@ <projectId>wao</projectId> <!-- versions --> + <commonsLoggingVersion>1.1.3</commonsLoggingVersion> + <commonsLang3Version>3.3.2</commonsLang3Version> + <commonsCollections4Version>4.0</commonsCollections4Version> + <guavaVersion>17.0</guavaVersion> + <junitVersion>4.11</junitVersion> + <log4jVersion>1.2.17</log4jVersion> + <commonsBeanutilsVersion>1.9.2</commonsBeanutilsVersion> + <commonsIoVersion>2.4</commonsIoVersion> <h2Version>1.3.176</h2Version> <struts2Version>2.3.16.3</struts2Version> <jqueryPluginVersion>3.7.1</jqueryPluginVersion> @@ -175,6 +185,49 @@ <!-- common dependencies (all module) --> <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>${commonsLoggingVersion}</version> + </dependency> + + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> + <version>${commonsLang3Version}</version> + </dependency> + + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-collections4</artifactId> + <version>${commonsCollections4Version}</version> + </dependency> + + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>${guavaVersion}</version> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>${junitVersion}</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils</artifactId> + <version>${commonsBeanutilsVersion}</version> + </dependency> + + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>${commonsIoVersion}</version> + </dependency> + + <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>${h2Version}</version> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.