Update versions for ElAlto release
[dcaegen2/services/sdk.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.onap.oparent</groupId>
6     <artifactId>oparent</artifactId>
7     <version>1.2.1</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.onap.dcaegen2.services</groupId>
12   <artifactId>sdk</artifactId>
13   <version>1.2.0-SNAPSHOT</version>
14
15   <name>dcaegen2-services-sdk</name>
16   <description>Common SDK repo for all DCAE Services (R4)</description>
17   <packaging>pom</packaging>
18
19   <licenses>
20     <license>
21       <name>The Apache Software License, Version 2.0</name>
22       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
23     </license>
24   </licenses>
25
26   <properties>
27     <java.version>8</java.version>
28     <junit-jupiter.version>5.3.1</junit-jupiter.version>
29     <junit-vintage.version>5.3.1</junit-vintage.version>
30     <junit-platform.version>1.3.1</junit-platform.version>
31     <immutables.version>2.7.4</immutables.version>
32     <assertj-core.version>3.11.1</assertj-core.version>
33     <reactor.bom.version>Californium-SR4</reactor.bom.version>
34     <slf4j.version>1.7.25</slf4j.version>
35     <logback.version>1.2.3</logback.version>
36     <mockito.version>2.23.4</mockito.version>
37     <protobuf.version>3.6.1</protobuf.version>
38     <vavr.version>0.10.0</vavr.version>
39     <commons-text.version>1.6</commons-text.version>
40     <jetbrains-annotations.version>16.0.3</jetbrains-annotations.version>
41     <protoc-jar-maven-plugin.version>3.6.0.2</protoc-jar-maven-plugin.version>
42     <maven-failsafe-plugin.version>2.21.0</maven-failsafe-plugin.version>
43   </properties>
44
45   <modules>
46     <module>rest-services</module>
47     <module>services</module>
48     <module>security</module>
49     <module>standardization</module>
50   </modules>
51
52   <build>
53     <pluginManagement>
54       <plugins>
55         <plugin>
56           <groupId>org.apache.maven.plugins</groupId>
57           <artifactId>maven-resources-plugin</artifactId>
58           <version>3.1.0</version> 
59           <configuration>
60             <encoding>${project.build.sourceEncoding}</encoding>
61           </configuration>
62         </plugin>
63         <plugin>
64           <groupId>org.apache.maven.plugins</groupId>
65           <artifactId>maven-compiler-plugin</artifactId>
66           <version>3.8.0</version>
67           <configuration>
68             <source>${java.version}</source>
69             <target>${java.version}</target>
70             <encoding>${project.build.sourceEncoding}</encoding>
71             <showWarnings>true</showWarnings>
72             <showDeprecation>true</showDeprecation>
73           </configuration>
74         </plugin>
75         <plugin>
76           <groupId>org.apache.maven.plugins</groupId>
77           <artifactId>maven-surefire-plugin</artifactId>
78           <version>2.22.1</version>
79         </plugin>
80         <plugin>
81           <artifactId>maven-javadoc-plugin</artifactId>
82           <version>3.0.1</version>
83           <configuration>
84             <additionalJOptions>
85               <additionalJOption>-Xdoclint:none</additionalJOption>
86             </additionalJOptions>
87           </configuration>
88         </plugin>
89         <plugin>
90           <artifactId>maven-project-info-reports-plugin</artifactId>
91           <version>2.9</version>
92         </plugin>
93         <plugin>
94           <groupId>org.codehaus.mojo</groupId>
95           <artifactId>build-helper-maven-plugin</artifactId>
96           <version>1.7</version>
97         </plugin>
98         <plugin>
99           <groupId>com.github.os72</groupId>
100           <artifactId>protoc-jar-maven-plugin</artifactId>
101           <version>${protoc-jar-maven-plugin.version}</version>
102         </plugin>
103       </plugins>
104     </pluginManagement>
105     <plugins>
106       <plugin>
107         <artifactId>maven-javadoc-plugin</artifactId>
108         <configuration>
109           <!-- minimize console output messages -->
110           <quiet>true</quiet>
111           <verbose>false</verbose>
112           <useStandardDocletOptions>false</useStandardDocletOptions>
113         </configuration>
114         <executions>
115           <execution>
116             <id>aggregate</id>
117             <phase>site</phase>
118             <goals>
119               <goal>aggregate</goal>
120             </goals>
121           </execution>
122           <execution>
123             <id>attach-javadoc</id>
124             <goals>
125               <goal>jar</goal>
126             </goals>
127           </execution>
128         </executions>
129       </plugin>
130       <plugin>
131         <groupId>org.apache.maven.plugins</groupId>
132         <artifactId>maven-failsafe-plugin</artifactId>
133         <version>${maven-failsafe-plugin.version}</version>
134         <executions>
135           <execution>
136             <goals>
137               <goal>integration-test</goal>
138               <goal>verify</goal>
139             </goals>
140           </execution>
141         </executions>
142       </plugin>
143     </plugins>
144   </build>
145   <reporting>
146     <plugins>
147       <plugin>
148         <artifactId>maven-project-info-reports-plugin</artifactId>
149         <reportSets>
150           <reportSet>
151             <reports>
152               <report>dependencies</report>
153               <report>license</report>
154             </reports>
155           </reportSet>
156         </reportSets>
157       </plugin>
158     </plugins>
159   </reporting>
160
161   <dependencyManagement>
162     <dependencies>
163       <dependency>
164         <groupId>com.google.protobuf</groupId>
165         <artifactId>protobuf-java</artifactId>
166         <version>${protobuf.version}</version>
167       </dependency>
168       <dependency>
169         <groupId>org.immutables</groupId>
170         <artifactId>value</artifactId>
171         <version>${immutables.version}</version>
172       </dependency>
173       <dependency>
174         <groupId>org.immutables</groupId>
175         <artifactId>gson</artifactId>
176         <version>${immutables.version}</version>
177       </dependency>
178       <dependency>
179         <groupId>io.vavr</groupId>
180         <artifactId>vavr</artifactId>
181         <version>${vavr.version}</version>
182       </dependency>
183       <dependency>
184         <groupId>org.apache.commons</groupId>
185         <artifactId>commons-text</artifactId>
186         <version>${commons-text.version}</version>
187       </dependency>
188       <dependency>
189         <groupId>org.slf4j</groupId>
190         <artifactId>jul-to-slf4j</artifactId>
191         <version>${slf4j.version}</version>
192       </dependency>
193       <dependency>
194         <groupId>org.slf4j</groupId>
195         <artifactId>log4j-over-slf4j</artifactId>
196         <version>${slf4j.version}</version>
197       </dependency>
198       <dependency>
199         <groupId>org.slf4j</groupId>
200         <artifactId>slf4j-api</artifactId>
201         <version>${slf4j.version}</version>
202       </dependency>
203       <dependency>
204         <groupId>org.jetbrains</groupId>
205         <artifactId>annotations</artifactId>
206         <version>${jetbrains-annotations.version}</version>
207       </dependency>
208       <dependency>
209         <groupId>io.projectreactor</groupId>
210         <artifactId>reactor-bom</artifactId>
211         <version>${reactor.bom.version}</version>
212         <type>pom</type>
213         <scope>import</scope>
214       </dependency>
215       <dependency>
216         <groupId>ch.qos.logback</groupId>
217         <artifactId>logback-classic</artifactId>
218         <version>${logback.version}</version>
219         <scope>runtime</scope>
220       </dependency>
221
222       <dependency>
223         <groupId>org.mockito</groupId>
224         <artifactId>mockito-core</artifactId>
225         <version>${mockito.version}</version>
226         <scope>test</scope>
227       </dependency>
228       <dependency>
229         <groupId>org.junit.jupiter</groupId>
230         <artifactId>junit-jupiter-engine</artifactId>
231         <version>${junit-jupiter.version}</version>
232         <scope>test</scope>
233       </dependency>
234       <dependency>
235         <groupId>org.assertj</groupId>
236         <artifactId>assertj-core</artifactId>
237         <version>${assertj-core.version}</version>
238         <scope>test</scope>
239       </dependency>
240     </dependencies>
241   </dependencyManagement>
242 </project>