ignite-388 dependency fix
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/7befb237 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/7befb237 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/7befb237 Branch: refs/heads/ignite-565 Commit: 7befb2376dfeac56e2d47ea20f7ac0bd6f79ab4d Parents: 67addfd Author: avinogradov <avinogra...@gridgain.com> Authored: Tue Mar 24 11:59:13 2015 +0300 Committer: avinogradov <avinogra...@gridgain.com> Committed: Tue Mar 24 11:59:13 2015 +0300 ---------------------------------------------------------------------- modules/clients/pom.xml | 21 +++++ modules/core/pom.xml | 27 +++++++ modules/indexing/pom.xml | 7 ++ modules/urideploy/pom.xml | 21 +++++ parent/pom.xml | 179 ++++++++++++++++++++++------------------- 5 files changed, 173 insertions(+), 82 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/7befb237/modules/clients/pom.xml ---------------------------------------------------------------------- diff --git a/modules/clients/pom.xml b/modules/clients/pom.xml index cfdac0d..a5f4038 100644 --- a/modules/clients/pom.xml +++ b/modules/clients/pom.xml @@ -89,6 +89,27 @@ <type>test-jar</type> <scope>test</scope> </dependency> + + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.4</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-beans</artifactId> + <version>${spring.version}</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + <version>${spring.version}</version> + <scope>test</scope> + </dependency> </dependencies> <build> http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/7befb237/modules/core/pom.xml ---------------------------------------------------------------------- diff --git a/modules/core/pom.xml b/modules/core/pom.xml index 17a0c51..fc6df33 100644 --- a/modules/core/pom.xml +++ b/modules/core/pom.xml @@ -131,6 +131,33 @@ <version>1.0.0</version> <scope>test</scope> </dependency> + + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-beans</artifactId> + <version>${spring.version}</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + <version>${spring.version}</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.4</version> + <scope>test</scope> + </dependency> </dependencies> <build> http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/7befb237/modules/indexing/pom.xml ---------------------------------------------------------------------- diff --git a/modules/indexing/pom.xml b/modules/indexing/pom.xml index 05bf3ef..8ff2aa2 100644 --- a/modules/indexing/pom.xml +++ b/modules/indexing/pom.xml @@ -65,5 +65,12 @@ <type>test-jar</type> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>${spring.version}</version> + <scope>test</scope> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/7befb237/modules/urideploy/pom.xml ---------------------------------------------------------------------- diff --git a/modules/urideploy/pom.xml b/modules/urideploy/pom.xml index fd0d2f3..f241a75 100644 --- a/modules/urideploy/pom.xml +++ b/modules/urideploy/pom.xml @@ -115,5 +115,26 @@ <version>1.0.0-RELEASE-TEST-SNAPSHOT</version> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-http</artifactId> + <version>9.0.5.v20130815</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-server</artifactId> + <version>9.0.5.v20130815</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + <version>9.0.5.v20130815</version> + <scope>test</scope> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/7befb237/parent/pom.xml ---------------------------------------------------------------------- diff --git a/parent/pom.xml b/parent/pom.xml index 0320ac5..0b34224 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -136,90 +136,105 @@ <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> + <scope>test</scope> </dependency> - <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - </dependency> - - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>3.2.1</version> - </dependency> - - <dependency> - <groupId>commons-io</groupId> - <artifactId>commons-io</artifactId> - <version>2.4</version> - </dependency> - - <dependency> - <groupId>org.eclipse.jetty</groupId> - <artifactId>jetty-io</artifactId> - <version>9.0.5.v20130815</version> - </dependency> - - <dependency> - <groupId>org.eclipse.jetty</groupId> - <artifactId>jetty-http</artifactId> - <version>9.0.5.v20130815</version> - </dependency> - - <dependency> - <groupId>org.eclipse.jetty</groupId> - <artifactId>jetty-server</artifactId> - <version>9.0.5.v20130815</version> - </dependency> - - <dependency> - <groupId>org.eclipse.jetty</groupId> - <artifactId>jetty-util</artifactId> - <version>9.0.5.v20130815</version> - </dependency> - - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-core</artifactId> - <version>${spring.version}</version> - </dependency> - - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-aop</artifactId> - <version>${spring.version}</version> - </dependency> - - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-beans</artifactId> - <version>${spring.version}</version> - </dependency> - - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-context</artifactId> - <version>${spring.version}</version> - </dependency> - - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-expression</artifactId> - <version>${spring.version}</version> - </dependency> - - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-tx</artifactId> - <version>${spring.version}</version> - </dependency> - - <dependency> - <groupId>com.beust</groupId> - <artifactId>jcommander</artifactId> - <version>1.30</version> - </dependency> + <!--<dependency>--> + <!--<groupId>log4j</groupId>--> + <!--<artifactId>log4j</artifactId>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>commons-collections</groupId>--> + <!--<artifactId>commons-collections</artifactId>--> + <!--<version>3.2.1</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>commons-io</groupId>--> + <!--<artifactId>commons-io</artifactId>--> + <!--<version>2.4</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>org.eclipse.jetty</groupId>--> + <!--<artifactId>jetty-io</artifactId>--> + <!--<version>9.0.5.v20130815</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>org.eclipse.jetty</groupId>--> + <!--<artifactId>jetty-http</artifactId>--> + <!--<version>9.0.5.v20130815</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>org.eclipse.jetty</groupId>--> + <!--<artifactId>jetty-server</artifactId>--> + <!--<version>9.0.5.v20130815</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>org.eclipse.jetty</groupId>--> + <!--<artifactId>jetty-util</artifactId>--> + <!--<version>9.0.5.v20130815</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>org.springframework</groupId>--> + <!--<artifactId>spring-core</artifactId>--> + <!--<version>${spring.version}</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>org.springframework</groupId>--> + <!--<artifactId>spring-aop</artifactId>--> + <!--<version>${spring.version}</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>org.springframework</groupId>--> + <!--<artifactId>spring-beans</artifactId>--> + <!--<version>${spring.version}</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>org.springframework</groupId>--> + <!--<artifactId>spring-context</artifactId>--> + <!--<version>${spring.version}</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>org.springframework</groupId>--> + <!--<artifactId>spring-expression</artifactId>--> + <!--<version>${spring.version}</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>org.springframework</groupId>--> + <!--<artifactId>spring-tx</artifactId>--> + <!--<version>${spring.version}</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> + + <!--<dependency>--> + <!--<groupId>com.beust</groupId>--> + <!--<artifactId>jcommander</artifactId>--> + <!--<version>1.30</version>--> + <!--<scope>test</scope>--> + <!--</dependency>--> </dependencies> <build>