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