New endpoints to auto populate edge properties.
[aai/gizmo.git] / janus-deps-pom.xml
1 <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">
2   <modelVersion>4.0.0</modelVersion>
3   <groupId>com.test</groupId>
4   <artifactId>myjanus</artifactId>
5   <version>0.0.1-SNAPSHOT</version>
6   <packaging>pom</packaging>
7   
8   <dependencies>
9                 
10                 <dependency>
11                 <groupId>org.openecomp.aai</groupId>
12                         <artifactId>champ-janus</artifactId>
13                         <version>1.1.1-AMDOCS-SNAPSHOT</version>
14                 </dependency>
15                 <dependency>
16             <groupId>org.janusgraph</groupId>
17             <artifactId>janusgraph-cassandra</artifactId>
18             <version>0.1.1</version>
19             <optional>true</optional>
20             <exclusions>
21                 <exclusion>
22                     <groupId>org.slf4j</groupId>
23                     <artifactId>slf4j-log4j12</artifactId>
24                 </exclusion>
25                 <exclusion>
26                     <groupId>ch.qos.logback</groupId>
27                     <artifactId>logback-classic</artifactId>
28                 </exclusion>
29                 <exclusion>
30                     <groupId>org.apache.tinkerpop</groupId>
31                     <artifactId>gremlin-core</artifactId>
32                 </exclusion>
33                 <exclusion>
34                     <groupId>org.apache.tinkerpop</groupId>
35                     <artifactId>gremlin-groovy</artifactId>
36                 </exclusion>
37             </exclusions>
38         </dependency>
39         <dependency>
40             <groupId>org.janusgraph</groupId>
41             <artifactId>janusgraph-hbase</artifactId>
42             <version>0.1.1</version>
43             <optional>true</optional>
44             <exclusions>
45                 <exclusion>
46                     <groupId>org.apache.tinkerpop</groupId>
47                     <artifactId>gremlin-groovy</artifactId>
48                 </exclusion>
49                 <exclusion>
50                     <groupId>org.slf4j</groupId>
51                     <artifactId>slf4j-log4j12</artifactId>
52                 </exclusion>
53                 <exclusion>
54                     <groupId>ch.qos.logback</groupId>
55                     <artifactId>logback-classic</artifactId>
56                 </exclusion>
57                 <exclusion>
58                     <groupId>org.apache.tinkerpop</groupId>
59                     <artifactId>gremlin-core</artifactId>
60                 </exclusion>
61             </exclusions>
62         </dependency>
63                               
64         </dependencies>
65         <build>
66     <plugins>
67       <plugin>
68         <groupId>org.apache.maven.plugins</groupId>
69         <artifactId>maven-dependency-plugin</artifactId>
70         <version>3.0.1</version>
71         <executions>
72           <execution>
73             <id>copy-dependencies</id>
74             <phase>package</phase>
75             <goals>
76               <goal>copy-dependencies</goal>
77             </goals>
78             <configuration>
79               <outputDirectory>${project.build.directory}/graph-deps/janus-deps</outputDirectory>
80               <overWriteReleases>false</overWriteReleases>
81               <overWriteSnapshots>false</overWriteSnapshots>
82               <overWriteIfNewer>true</overWriteIfNewer>
83             </configuration>
84           </execution>
85         </executions>
86       </plugin>
87     </plugins>
88   </build>
89         
90 </project>