diff options
author | abatos <adrian.batos-parac@amdocs.com> | 2017-08-22 14:23:21 -0400 |
---|---|---|
committer | abatos <adrian.batos-parac@amdocs.com> | 2017-08-22 15:33:04 -0400 |
commit | ddc73b563fcd2b3e47b5d0f54139f20ed3cdcba1 (patch) | |
tree | 91bf9c18725f0a982468ad71f963ffe26f8c2d58 /janus-deps-pom.xml | |
parent | 7e69be504213aa92893fd3354a767128b3a583f1 (diff) |
Split out Titan specific dependencies from core
Remove the Titan specific references within the gizmo core and prepare
for dependency on new champ core library.
Change-Id: I29a4e7b6528e8357715b095d8db5456cd01eb636
Issue-ID: AAI-21
Signed-off-by: abatos <adrian.batos-parac@amdocs.com>
Diffstat (limited to 'janus-deps-pom.xml')
-rw-r--r-- | janus-deps-pom.xml | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/janus-deps-pom.xml b/janus-deps-pom.xml new file mode 100644 index 0000000..7a0cd77 --- /dev/null +++ b/janus-deps-pom.xml @@ -0,0 +1,90 @@ +<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> + <groupId>com.test</groupId> + <artifactId>myjanus</artifactId> + <version>0.0.1-SNAPSHOT</version> + <packaging>pom</packaging> + + <dependencies> + + <dependency> + <groupId>org.openecomp.aai</groupId> + <artifactId>champ-janus</artifactId> + <version>1.1.1-AMDOCS-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.janusgraph</groupId> + <artifactId>janusgraph-cassandra</artifactId> + <version>0.1.1</version> + <optional>true</optional> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + <exclusion> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-groovy</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.janusgraph</groupId> + <artifactId>janusgraph-hbase</artifactId> + <version>0.1.1</version> + <optional>true</optional> + <exclusions> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-groovy</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + <exclusion> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-core</artifactId> + </exclusion> + </exclusions> + </dependency> + + </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>3.0.1</version> + <executions> + <execution> + <id>copy-dependencies</id> + <phase>package</phase> + <goals> + <goal>copy-dependencies</goal> + </goals> + <configuration> + <outputDirectory>${project.build.directory}/graph-deps/janus-deps</outputDirectory> + <overWriteReleases>false</overWriteReleases> + <overWriteSnapshots>false</overWriteSnapshots> + <overWriteIfNewer>true</overWriteIfNewer> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project>
\ No newline at end of file |