4ce3d5fdea86e969ef83c892fd3a37564f0029b9
[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
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             </exclusions>
107         </dependency>
108
109         <dependency>
110             <groupId>org.hamcrest</groupId>
111             <artifactId>hamcrest-library</artifactId>
112             <version>1.3</version>
113             <scope>test</scope>
114         </dependency>
115
116         <dependency>
117             <groupId>org.skyscreamer</groupId>
118             <artifactId>jsonassert</artifactId>
119             <version>1.5.0</version>
120             <scope>test</scope>
121         </dependency>
122     </dependencies>
123
124     <build>
125         <plugins>
126             <plugin>
127                 <groupId>org.apache.maven.plugins</groupId>
128                 <artifactId>maven-jar-plugin</artifactId>
129                 <version>3.0.2</version>
130                 <executions>
131                     <execution>
132                         <goals>
133                             <goal>test-jar</goal>
134                         </goals>
135                     </execution>
136                 </executions>
137             </plugin>
138             <plugin>
139                 <groupId>org.apache.maven.plugins</groupId>
140                 <artifactId>maven-deploy-plugin</artifactId>
141                 <configuration>
142                     <skip>true</skip>
143                 </configuration>
144             </plugin>
145             <plugin>
146                 <groupId>com.mycila</groupId>
147                 <artifactId>license-maven-plugin</artifactId>
148                 <version>3.0</version>
149                 <configuration>
150                     <header>License.txt</header>
151                     <includes>
152                         <include>**/*.java</include>
153                         <include>**/*.ksh</include>
154                         <include>**/*.sh</include>
155                         <include>**/*.ftl</include>
156                         <include>**/*.xsd</include>
157                         <include>**/*.xjb</include>
158                         <include>**/*.yml</include>
159                         <include>**/*.yaml</include>
160                         <include>**/aai*.xml</include>
161                         <include>**/*logback*.xml</include>
162                         <include>**/*aaiconfig*.properties</include>
163                         <include>**/*titan*.properties</include>
164                     </includes>
165                     <skipExistingHeaders>true</skipExistingHeaders>
166                 </configuration>
167                 <executions>
168                     <execution>
169                         <goals>
170                             <!-- Set goal to "format" to auto update license headers -->
171                             <goal>check</goal>
172                         </goals>
173                         <phase>process-sources</phase>
174                     </execution>
175                 </executions>
176             </plugin>
177         </plugins>
178     </build>
179 </project>