This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository scmwebeditor. See http://git.nuiton.org/scmwebeditor.git commit 61435ae2f53aa5fcbd4403db2b065954dd26e5ee Author: Tony CHEMIT <chemit@codelutin.com> Date: Fri Oct 23 14:53:54 2015 +0200 Optimize dependencies --- pom.xml | 19 +++++++++++++++++++ swe-git/pom.xml | 7 ++++++- swe-scm-api/pom.xml | 7 +------ swe-svn/pom.xml | 10 ++++++++++ swe-ui-web/pom.xml | 47 +++++++++++++++++++++++++++++++++++++++++++---- 5 files changed, 79 insertions(+), 11 deletions(-) diff --git a/pom.xml b/pom.xml index 245925d..207d4c1 100644 --- a/pom.xml +++ b/pom.xml @@ -184,6 +184,12 @@ </dependency> <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>18.0</version> + </dependency> + + <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit</artifactId> <version>3.7.0.201502260915-r</version> @@ -273,6 +279,19 @@ <scope>compile</scope> </dependency> + <dependency> + <groupId>dom4j</groupId> + <artifactId>dom4j</artifactId> + <version>1.6.1</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + <version>2.0.2</version> + </dependency> + <!-- Struts --> <dependency> diff --git a/swe-git/pom.xml b/swe-git/pom.xml index 68c452d..b47a531 100644 --- a/swe-git/pom.xml +++ b/swe-git/pom.xml @@ -57,7 +57,12 @@ <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit</artifactId> </dependency> - + + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </dependency> + </dependencies> </project> diff --git a/swe-scm-api/pom.xml b/swe-scm-api/pom.xml index 9c1b7ce..25b6ea5 100644 --- a/swe-scm-api/pom.xml +++ b/swe-scm-api/pom.xml @@ -47,12 +47,7 @@ </build> <dependencies> - - <dependency> - <groupId>org.nuiton</groupId> - <artifactId>nuiton-config</artifactId> - </dependency> - + </dependencies> </project> diff --git a/swe-svn/pom.xml b/swe-svn/pom.xml index 5d76cd4..3e991e6 100644 --- a/swe-svn/pom.xml +++ b/swe-svn/pom.xml @@ -63,6 +63,16 @@ <groupId>org.nuiton</groupId> <artifactId>nuiton-utils</artifactId> </dependency> + + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </dependency> + + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </dependency> </dependencies> diff --git a/swe-ui-web/pom.xml b/swe-ui-web/pom.xml index 60ffa85..0ce8d1a 100644 --- a/swe-ui-web/pom.xml +++ b/swe-ui-web/pom.xml @@ -30,7 +30,7 @@ <!-- Post Release configuration --> <skipPostRelease>false</skipPostRelease> - + </properties> <build> @@ -84,16 +84,29 @@ <dependency> <groupId>${project.groupId}</groupId> + <artifactId>scmwebeditor-scm-api</artifactId> + <version>${project.version}</version> + </dependency> + + <dependency> + <groupId>${project.groupId}</groupId> <artifactId>scmwebeditor-svn</artifactId> <version>${project.version}</version> + <scope>runtime</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>scmwebeditor-git</artifactId> <version>${project.version}</version> + <scope>runtime</scope> </dependency> - + + <dependency> + <groupId>org.nuiton</groupId> + <artifactId>nuiton-config</artifactId> + </dependency> + <dependency> <groupId>org.nuiton.i18n</groupId> <artifactId>nuiton-i18n</artifactId> @@ -105,13 +118,29 @@ </dependency> <dependency> + <groupId>org.nuiton.jrst</groupId> + <artifactId>jrst</artifactId> + </dependency> + + <dependency> <groupId>org.webjars</groupId> <artifactId>codemirror</artifactId> + <scope>runtime</scope> </dependency> <dependency> - <groupId>org.nuiton.jrst</groupId> - <artifactId>jrst</artifactId> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </dependency> + + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </dependency> + + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> </dependency> <dependency> @@ -139,6 +168,16 @@ <artifactId>cpdetector</artifactId> </dependency> + <dependency> + <groupId>dom4j</groupId> + <artifactId>dom4j</artifactId> + </dependency> + + <dependency> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + </dependency> + <!-- Struts --> <dependency> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.