d528a0f924161d295be44f28c6f79fd48dd7f015
[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</groupId>
29         <artifactId>champ-lib</artifactId>
30         <version>1.2.1-SNAPSHOT</version>
31     </parent>
32
33     <artifactId>champ-core</artifactId>
34
35     <dependencies>
36         <!-- Event Bus Library. -->
37         <dependency>
38             <groupId>org.onap.aai.event-client</groupId>
39             <artifactId>event-client-api</artifactId>
40         </dependency>
41
42         <dependency>
43             <groupId>org.onap.aai.event-client</groupId>
44             <artifactId>event-client-dmaap</artifactId>
45         </dependency>
46
47         <dependency>
48             <groupId>org.onap.aai.event-client</groupId>
49             <artifactId>event-client-kafka</artifactId>
50         </dependency>
51         <!-- Event Bus Library - END -->
52
53         <dependency>
54             <groupId>org.codehaus.groovy</groupId>
55             <artifactId>groovy</artifactId>
56         </dependency>
57
58         <dependency>
59             <groupId>com.fasterxml.jackson.core</groupId>
60             <artifactId>jackson-databind</artifactId>
61         </dependency>
62
63         <dependency>
64             <groupId>org.apache.tinkerpop</groupId>
65             <artifactId>gremlin-core</artifactId>
66             <version>3.2.3</version>
67             <optional>true</optional>
68             <exclusions>
69                 <exclusion>
70                     <groupId>org.slf4j</groupId>
71                     <artifactId>slf4j-log4j12</artifactId>
72                 </exclusion>
73                 <exclusion>
74                     <groupId>org.slf4j</groupId>
75                     <artifactId>jcl-over-slf4j</artifactId>
76                 </exclusion>
77             </exclusions>
78         </dependency>
79
80         <dependency>
81             <groupId>org.apache.tinkerpop</groupId>
82             <artifactId>tinkergraph-gremlin</artifactId>
83             <version>3.2.3</version>
84             <optional>true</optional>
85         </dependency>
86
87         <dependency>
88             <groupId>com.google.code.gson</groupId>
89             <artifactId>gson</artifactId>
90             <version>2.8.2</version>
91         </dependency>
92
93         <dependency>
94             <groupId>org.apache.hbase</groupId>
95             <artifactId>hbase-client</artifactId>
96             <exclusions>
97                 <exclusion>
98                     <groupId>org.slf4j</groupId>
99                     <artifactId>slf4j-log4j12</artifactId>
100                 </exclusion>
101                 <exclusion>
102                     <groupId>com.google.guava</groupId>
103                     <artifactId>guava</artifactId>
104                 </exclusion>
105             </exclusions>
106         </dependency>
107     </dependencies>
108
109     <build>
110         <plugins>
111             <plugin>
112                 <groupId>org.apache.maven.plugins</groupId>
113                 <artifactId>maven-jar-plugin</artifactId>
114                 <version>3.0.2</version>
115                 <executions>
116                     <execution>
117                         <goals>
118                             <goal>test-jar</goal>
119                         </goals>
120                     </execution>
121                 </executions>
122             </plugin>
123             <plugin>
124                 <groupId>org.apache.maven.plugins</groupId>
125                 <artifactId>maven-deploy-plugin</artifactId>
126                 <configuration>
127                     <skip>true</skip>
128                 </configuration>
129             </plugin>
130             <plugin>
131                 <groupId>com.mycila</groupId>
132                 <artifactId>license-maven-plugin</artifactId>
133                 <version>3.0</version>
134                 <configuration>
135                     <header>License.txt</header>
136                     <includes>
137                         <include>**/*.java</include>
138                         <include>**/*.ksh</include>
139                         <include>**/*.sh</include>
140                         <include>**/*.ftl</include>
141                         <include>**/*.xsd</include>
142                         <include>**/*.xjb</include>
143                         <include>**/*.yml</include>
144                         <include>**/*.yaml</include>
145                         <include>**/aai*.xml</include>
146                         <include>**/*logback*.xml</include>
147                         <include>**/*aaiconfig*.properties</include>
148                         <include>**/*titan*.properties</include>
149                     </includes>
150                     <skipExistingHeaders>true</skipExistingHeaders>
151                 </configuration>
152                 <executions>
153                     <execution>
154                         <goals>
155                             <!-- Set goal to "format" to auto update license headers -->
156                             <goal>check</goal>
157                         </goals>
158                         <phase>process-sources</phase>
159                     </execution>
160                 </executions>
161             </plugin>
162         </plugins>
163     </build>
164 </project>