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