IGNITE-GG-12163 (revert) test dependencies were cleaned up in pom file
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/96c293ca Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/96c293ca Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/96c293ca Branch: refs/heads/ignite-5075-pds Commit: 96c293caa79f8d448077e1c7272df371cadaa0d2 Parents: 1cce2fc Author: Dmitriy Govorukhin <[email protected]> Authored: Fri May 12 19:50:41 2017 +0300 Committer: Dmitriy Govorukhin <[email protected]> Committed: Fri May 12 19:50:41 2017 +0300 ---------------------------------------------------------------------- modules/pds/pom.xml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/96c293ca/modules/pds/pom.xml ---------------------------------------------------------------------- diff --git a/modules/pds/pom.xml b/modules/pds/pom.xml index 01ef574..c3bcec6 100644 --- a/modules/pds/pom.xml +++ b/modules/pds/pom.xml @@ -48,12 +48,40 @@ </dependency> <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>${common.io.version}</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-spring</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + + <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <scope>test</scope> </dependency> <dependency> + <groupId>com.thoughtworks.xstream</groupId> + <artifactId>xstream</artifactId> + <version>${xstream.version}</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-indexing</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + + <dependency> <groupId>org.apache.ignite</groupId> <artifactId>ignite-indexing</artifactId> <version>${project.version}</version> @@ -70,6 +98,13 @@ </dependency> <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>${guava.version}</version> + <scope>test</scope> + </dependency> + + <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>${javassist.version}</version>
