Upversion to 1.4.0 - Dublin branch
[aai/champ.git] / champ-lib / champ-core / 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
22 <project xmlns="http://maven.apache.org/POM/4.0.0"
23          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26
27     <parent>
28         <groupId>org.onap.aai.champ</groupId>
29         <artifactId>champ-lib</artifactId>
30         <version>1.4.0-SNAPSHOT</version>
31     </parent>
32
33     <groupId>org.onap.aai.champ.champ-lib</groupId>
34     <artifactId>champ-core</artifactId>
35
36     <dependencies>
37         <!-- Event Bus Library. -->
38         <dependency>
39             <groupId>org.onap.aai.event-client</groupId>
40             <artifactId>event-client-api</artifactId>
41         </dependency>
42
43         <dependency>
44             <groupId>org.onap.aai.event-client</groupId>
45             <artifactId>event-client-dmaap</artifactId>
46         </dependency>
47         
48         <dependency>
49             <groupId>org.onap.aai.event-client</groupId>
50             <artifactId>event-client-kafka</artifactId>
51         </dependency>
52         <!-- Event Bus Library - END -->
53
54         <dependency>
55             <groupId>org.codehaus.groovy</groupId>
56             <artifactId>groovy</artifactId>
57         </dependency>
58
59         <dependency>
60             <groupId>com.fasterxml.jackson.core</groupId>
61             <artifactId>jackson-databind</artifactId>
62         </dependency>
63
64         <dependency>
65             <groupId>org.apache.tinkerpop</groupId>
66             <artifactId>gremlin-core</artifactId>
67             <version>3.2.3</version>
68             <optional>true</optional>
69             <exclusions>
70                 <exclusion>
71                     <groupId>org.slf4j</groupId>
72                     <artifactId>slf4j-log4j12</artifactId>
73                 </exclusion>
74                 <exclusion>
75                     <groupId>org.slf4j</groupId>
76                     <artifactId>jcl-over-slf4j</artifactId>
77                 </exclusion>
78             </exclusions>
79         </dependency>
80
81         <dependency>
82             <groupId>org.apache.tinkerpop</groupId>
83             <artifactId>tinkergraph-gremlin</artifactId>
84             <version>3.2.3</version>
85             <optional>true</optional>
86         </dependency>
87
88         <dependency>
89             <groupId>com.google.code.gson</groupId>
90             <artifactId>gson</artifactId>
91             <version>2.8.2</version>
92         </dependency>
93
94         <dependency>
95             <groupId>org.apache.hbase</groupId>
96             <artifactId>hbase-client</artifactId>
97             <exclusions>
98                 <exclusion>
99                     <groupId>org.slf4j</groupId>
100                     <artifactId>slf4j-log4j12</artifactId>
101                 </exclusion>
102                 <exclusion>
103                     <groupId>com.google.guava</groupId>
104                     <artifactId>guava</artifactId>
105                 </exclusion>
106                 <exclusion>
107                     <groupId>org.apache.hadoop</groupId>
108                     <artifactId>hadoop-yarn-common</artifactId>
109                 </exclusion>
110                 <exclusion>
111                     <groupId>org.apache.hadoop</groupId>
112                     <artifactId>hadoop-mapreduce-client-core</artifactId>
113                 </exclusion>
114                 <exclusion>
115                     <groupId>org.apache.commons</groupId>
116                     <artifactId>commons-compress</artifactId>
117                 </exclusion>
118                 <exclusion>
119                     <groupId>commons-httpclient</groupId>
120                     <artifactId>commons-compress</artifactId>
121                 </exclusion>
122                 <exclusion>
123                     <groupId>commons-httpclient</groupId>
124                     <artifactId>commons-httpclient</artifactId>
125                 </exclusion>
126             </exclusions>
127         </dependency>
128
129         <dependency>
130             <groupId>org.hamcrest</groupId>
131             <artifactId>hamcrest-library</artifactId>
132             <version>1.3</version>
133             <scope>test</scope>
134         </dependency>
135
136         <dependency>
137             <groupId>org.skyscreamer</groupId>
138             <artifactId>jsonassert</artifactId>
139             <version>1.5.0</version>
140             <scope>test</scope>
141         </dependency>
142     </dependencies>
143
144     <build>
145         <plugins>
146             <plugin>
147                 <groupId>org.apache.maven.plugins</groupId>
148                 <artifactId>maven-jar-plugin</artifactId>
149                 <version>3.0.2</version>
150                 <executions>
151                     <execution>
152                         <goals>
153                             <goal>test-jar</goal>
154                         </goals>
155                     </execution>
156                 </executions>
157             </plugin>
158             <plugin>
159                 <groupId>org.apache.maven.plugins</groupId>
160                 <artifactId>maven-deploy-plugin</artifactId>
161                 <configuration>
162                     <skip>true</skip>
163                 </configuration>
164             </plugin>
165             <plugin>
166                 <groupId>com.mycila</groupId>
167                 <artifactId>license-maven-plugin</artifactId>
168                 <version>3.0</version>
169                 <configuration>
170                     <header>License.txt</header>
171                     <includes>
172                         <include>**/*.java</include>
173                         <include>**/*.ksh</include>
174                         <include>**/*.sh</include>
175                         <include>**/*.ftl</include>
176                         <include>**/*.xsd</include>
177                         <include>**/*.xjb</include>
178                         <include>**/*.yml</include>
179                         <include>**/*.yaml</include>
180                         <include>**/aai*.xml</include>
181                         <include>**/*logback*.xml</include>
182                         <include>**/*aaiconfig*.properties</include>
183                         <include>**/*titan*.properties</include>
184                     </includes>
185                     <skipExistingHeaders>true</skipExistingHeaders>
186                 </configuration>
187                 <executions>
188                     <execution>
189                         <goals>
190                             <!-- Set goal to "format" to auto update license headers -->
191                             <goal>check</goal>
192                         </goals>
193                         <phase>process-sources</phase>
194                     </execution>
195                 </executions>
196             </plugin>
197         </plugins>
198     </build>
199 </project>