Upgrade to janus 0.2.0
[aai/champ.git] / champ-service-deps-janus / pom.xml
1 <!--
2 ============LICENSE_START=======================================================
3 org.onap.aai
4 ================================================================================
5 Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6 Copyright © 2017-2018 Amdocs
7 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12       http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24
25     <groupId>org.onap.aai</groupId>
26     <artifactId>champ-service-deps-janus</artifactId>
27     <packaging>pom</packaging>
28     <version>1.2.0-SNAPSHOT</version>
29
30     <parent>
31         <groupId>org.onap.aai</groupId>
32         <artifactId>champ</artifactId>
33         <version>1.2.0-SNAPSHOT</version>
34     </parent>
35
36     <dependencies>
37         <dependency>
38             <groupId>org.onap.aai</groupId>
39             <artifactId>champ-janus</artifactId>
40             <version>1.2.0-SNAPSHOT</version>
41         </dependency>
42         <dependency>
43             <groupId>org.janusgraph</groupId>
44             <artifactId>janusgraph-cassandra</artifactId>
45             <version>0.2.0</version>
46             <optional>true</optional>
47             <exclusions>
48                 <exclusion>
49                     <groupId>org.slf4j</groupId>
50                     <artifactId>slf4j-log4j12</artifactId>
51                 </exclusion>
52                 <exclusion>
53                     <groupId>ch.qos.logback</groupId>
54                     <artifactId>logback-classic</artifactId>
55                 </exclusion>
56                 <exclusion>
57                     <groupId>org.apache.tinkerpop</groupId>
58                     <artifactId>gremlin-core</artifactId>
59                 </exclusion>
60                 <exclusion>
61                     <groupId>org.apache.tinkerpop</groupId>
62                     <artifactId>gremlin-groovy</artifactId>
63                 </exclusion>
64             </exclusions>
65         </dependency>
66         <dependency>
67             <groupId>org.janusgraph</groupId>
68             <artifactId>janusgraph-hbase</artifactId>
69             <version>0.2.0</version>
70             <optional>true</optional>
71             <exclusions>
72                 <exclusion>
73                     <groupId>org.apache.tinkerpop</groupId>
74                     <artifactId>gremlin-groovy</artifactId>
75                 </exclusion>
76                 <exclusion>
77                     <groupId>org.slf4j</groupId>
78                     <artifactId>slf4j-log4j12</artifactId>
79                 </exclusion>
80                 <exclusion>
81                     <groupId>ch.qos.logback</groupId>
82                     <artifactId>logback-classic</artifactId>
83                 </exclusion>
84                 <exclusion>
85                     <groupId>org.apache.tinkerpop</groupId>
86                     <artifactId>gremlin-core</artifactId>
87                 </exclusion>
88             </exclusions>
89         </dependency>
90     </dependencies>
91
92     <build>
93         <plugins>
94             <plugin>
95                 <groupId>org.apache.maven.plugins</groupId>
96                 <artifactId>maven-dependency-plugin</artifactId>
97                 <version>3.0.1</version>
98                 <executions>
99                     <execution>
100                         <id>copy-janus-dependencies</id>
101                         <phase>package</phase>
102                         <goals>
103                             <goal>copy-dependencies</goal>
104                         </goals>
105                         <configuration>
106                             <outputDirectory>target/graph-deps/janus-deps</outputDirectory>
107                             <overWriteReleases>false</overWriteReleases>
108                             <overWriteSnapshots>false</overWriteSnapshots>
109                             <overWriteIfNewer>true</overWriteIfNewer>
110                         </configuration>
111                     </execution>
112                 </executions>
113             </plugin>
114             <plugin>
115                 <groupId>org.apache.maven.plugins</groupId>
116                 <artifactId>maven-deploy-plugin</artifactId>
117                 <configuration>
118                     <skip>true</skip>
119                 </configuration>
120             </plugin>
121         </plugins>
122     </build>
123 </project>