contains-other-v no longer implies delete-other-v
[aai/aai-common.git] / aai-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <parent>
8         <groupId>org.onap.aai.aai-common</groupId>
9         <artifactId>aai-common</artifactId>
10         <version>1.2.0-SNAPSHOT</version>
11     </parent>
12     <artifactId>aai-utils</artifactId>
13     <name>aai-utils</name>
14     <version>1.2.0-SNAPSHOT</version>
15
16     <properties>
17         <checkstyle.config.location>google_checks.xml</checkstyle.config.location>
18         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
19     </properties>
20
21     <dependencies>
22
23         <dependency>
24             <groupId>com.fasterxml.jackson.core</groupId>
25             <artifactId>jackson-databind</artifactId>
26             <version>2.8.7</version>
27         </dependency>
28
29         <dependency>
30             <groupId>org.apache.httpcomponents</groupId>
31             <artifactId>httpclient</artifactId>
32             <version>4.5.3</version>
33         </dependency>
34
35         <dependency>
36             <groupId>org.eclipse.persistence</groupId>
37             <artifactId>eclipselink</artifactId>
38             <version>2.6.2</version>
39         </dependency>
40
41         <!-- Common logging framework -->
42         <dependency>
43             <groupId>org.onap.aai.logging-service</groupId>
44             <artifactId>common-logging</artifactId>
45             <version>1.1.0</version>
46         </dependency>
47
48         <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
49         <dependency>
50             <groupId>org.springframework</groupId>
51             <artifactId>spring-core</artifactId>
52             <version>4.3.10.RELEASE</version>
53         </dependency>
54
55         <dependency>
56             <groupId>org.onap.aai.aai-common</groupId>
57             <artifactId>aai-schema</artifactId>
58             <version>1.2.0-SNAPSHOT</version>
59             <exclusions>
60                 <exclusion>
61                     <groupId>*</groupId>
62                     <artifactId>*</artifactId>
63                 </exclusion>
64             </exclusions>
65         </dependency>
66
67         <dependency>
68             <groupId>junit</groupId>
69             <artifactId>junit</artifactId>
70             <version>4.11</version>
71             <scope>test</scope>
72         </dependency>
73     </dependencies>
74
75     <build>
76         <plugins>
77             <!-- license plugin -->
78             <plugin>
79                 <groupId>com.mycila</groupId>
80                 <artifactId>license-maven-plugin</artifactId>
81                 <version>3.0</version>
82                 <configuration>
83                     <header>License.txt</header>
84                     <includes>
85                         <include>src/main/java/**</include>
86                     </includes>
87                 </configuration>
88                 <executions>
89                     <execution>
90                         <goals>
91                             <goal>format</goal>
92                         </goals>
93                         <phase>process-sources</phase>
94                     </execution>
95                 </executions>
96             </plugin>
97
98             <plugin>
99                 <groupId>org.apache.maven.plugins</groupId>
100                 <artifactId>maven-site-plugin</artifactId>
101                 <version>3.3</version>
102             </plugin>
103             <plugin>
104                 <groupId>org.sonatype.plugins</groupId>
105                 <artifactId>nexus-staging-maven-plugin</artifactId>
106             </plugin>
107         </plugins>
108     </build>
109
110     <reporting>
111         <plugins>
112             <plugin>
113                 <groupId>org.apache.maven.plugins</groupId>
114                 <artifactId>maven-checkstyle-plugin</artifactId>
115                 <version>2.17</version>
116                 <reportSets>
117                     <reportSet>
118                         <reports>
119                             <report>checkstyle</report>
120                         </reports>
121                     </reportSet>
122                 </reportSets>
123             </plugin>
124         </plugins>
125     </reporting>
126
127 </project>