dbbb2b754fd3a7a3f95ca5f84631e3dbe3c8d90d
[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         <artifactId>champ-lib</artifactId>
29         <groupId>org.onap.aai</groupId>
30         <version>1.2.0-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             <version>${event.client.version}</version>
41         </dependency>
42         <dependency>
43             <groupId>org.onap.aai.event-client</groupId>
44             <artifactId>event-client-dmaap</artifactId>
45             <version>${event.client.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.onap.aai.event-client</groupId>
49             <artifactId>event-client-kafka</artifactId>
50             <version>${event.client.version}</version>
51         </dependency>
52         <!-- Event Bus Library - END -->
53
54         <dependency>
55             <groupId>org.codehaus.groovy</groupId>
56             <artifactId>groovy</artifactId>
57             <version>2.4.12</version>
58         </dependency>
59         <dependency>
60             <groupId>com.fasterxml.jackson.core</groupId>
61             <artifactId>jackson-databind</artifactId>
62             <version>2.5.3</version>
63         </dependency>
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         <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         <dependency>
87             <groupId>com.google.code.gson</groupId>
88             <artifactId>gson</artifactId>
89             <version>2.8.2</version>
90         </dependency>
91     </dependencies>
92
93     <build>
94         <plugins>
95             <plugin>
96                 <groupId>org.apache.maven.plugins</groupId>
97                 <artifactId>maven-jar-plugin</artifactId>
98                 <version>3.0.2</version>
99                 <executions>
100                     <execution>
101                         <goals>
102                             <goal>test-jar</goal>
103                         </goals>
104                     </execution>
105                 </executions>
106             </plugin>
107             <plugin>
108                 <groupId>org.apache.maven.plugins</groupId>
109                 <artifactId>maven-deploy-plugin</artifactId>
110                 <configuration>
111                     <skip>true</skip>
112                 </configuration>
113             </plugin>
114             <!-- Uncomment to add a license header to source files
115             <plugin>
116                 <groupId>com.mycila</groupId>
117                 <artifactId>license-maven-plugin</artifactId>
118                 <version>3.0</version>
119                 <configuration>
120                     <header>License.txt</header>
121                     <includes>
122                         <include>**/*.java</include>
123                         <include>**/*.ksh</include>
124                         <include>**/*.sh</include>
125                         <include>**/*.ftl</include>
126                         <include>**/*.xsd</include>
127                         <include>**/*.xjb</include>
128                         <include>**/*.yml</include>
129                         <include>**/*.yaml</include>
130                         <include>**/aai*.xml</include>
131                         <include>**/*logback*.xml</include>
132                         <include>**/*aaiconfig*.properties</include>
133                         <include>**/*titan*.properties</include>
134                     </includes>
135                 </configuration>
136                 <executions>
137                     <execution>
138                         <goals>
139                             <goal>format</goal>
140                         </goals>
141                         <phase>process-sources</phase>
142                     </execution>
143                 </executions>
144             </plugin>
145             -->
146         </plugins>
147     </build>
148 </project>