0aebf37e01067f68eb052e4868661f8c5d5190a1
[aai/champ.git] / champ-service-deps-titan / 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-titan</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-titan</artifactId>
40             <version>1.2.0-SNAPSHOT</version>
41         </dependency>
42         <dependency>
43             <groupId>com.thinkaurelius.titan</groupId>
44             <artifactId>titan-cassandra</artifactId>
45             <version>1.0.0</version>
46             <exclusions>
47                 <exclusion>
48                     <groupId>org.apache.tinkerpop</groupId>
49                     <artifactId>gremlin-groovy</artifactId>
50                 </exclusion>
51                 <exclusion>
52                     <groupId>org.slf4j</groupId>
53                     <artifactId>slf4j-log4j12</artifactId>
54                 </exclusion>
55                 <exclusion>
56                     <groupId>ch.qos.logback</groupId>
57                     <artifactId>logback-classic</artifactId>
58                 </exclusion>
59                 <exclusion>
60                     <groupId>org.apache.tinkerpop</groupId>
61                     <artifactId>gremlin-core</artifactId>
62                 </exclusion>
63             </exclusions>
64         </dependency>
65         <dependency>
66             <groupId>com.thinkaurelius.titan</groupId>
67             <artifactId>titan-hbase</artifactId>
68             <version>1.0.0</version>
69             <exclusions>
70                 <exclusion>
71                     <groupId>org.apache.tinkerpop</groupId>
72                     <artifactId>gremlin-groovy</artifactId>
73                 </exclusion>
74                 <exclusion>
75                     <groupId>org.slf4j</groupId>
76                     <artifactId>slf4j-log4j12</artifactId>
77                 </exclusion>
78                 <exclusion>
79                     <groupId>ch.qos.logback</groupId>
80                     <artifactId>logback-classic</artifactId>
81                 </exclusion>
82                 <exclusion>
83                     <groupId>org.apache.tinkerpop</groupId>
84                     <artifactId>gremlin-core</artifactId>
85                 </exclusion>
86             </exclusions>
87         </dependency>
88     </dependencies>
89
90     <build>
91         <plugins>
92             <plugin>
93                 <groupId>org.apache.maven.plugins</groupId>
94                 <artifactId>maven-dependency-plugin</artifactId>
95                 <version>3.0.1</version>
96                 <executions>
97                     <execution>
98                         <id>copy-titan-dependencies</id>
99                         <phase>package</phase>
100                         <goals>
101                             <goal>copy-dependencies</goal>
102                         </goals>
103                         <configuration>
104                             <outputDirectory>target/graph-deps/titan-deps</outputDirectory>
105                             <overWriteReleases>false</overWriteReleases>
106                             <overWriteSnapshots>false</overWriteSnapshots>
107                             <overWriteIfNewer>true</overWriteIfNewer>
108                         </configuration>
109                     </execution>
110                 </executions>
111             </plugin>
112             <plugin>
113                 <groupId>org.apache.maven.plugins</groupId>
114                 <artifactId>maven-deploy-plugin</artifactId>
115                 <configuration>
116                     <skip>true</skip>
117                 </configuration>
118             </plugin>
119         </plugins>
120     </build>
121 </project>