Merge "Top up version after 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"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.onap.oparent</groupId>
7         <artifactId>oparent</artifactId>
8         <version>2.0.0</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.dcaegen2.services</groupId>
13     <artifactId>sdk</artifactId>
14     <version>1.3.4-SNAPSHOT</version>
15
16     <name>dcaegen2-services-sdk</name>
17     <description>Common SDK repo for all DCAE Services</description>
18     <packaging>pom</packaging>
19
20     <licenses>
21         <license>
22             <name>The Apache Software License, Version 2.0</name>
23             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
24         </license>
25     </licenses>
26
27     <profiles>
28         <profile>
29             <id>default</id>
30             <activation>
31                 <activeByDefault>true</activeByDefault>
32             </activation>
33             <build>
34                 <plugins>
35                     <plugin>
36                         <groupId>org.apache.maven.plugins</groupId>
37                         <artifactId>maven-failsafe-plugin</artifactId>
38                         <configuration>
39                             <skipITs>true</skipITs>
40                         </configuration>
41                     </plugin>
42                 </plugins>
43             </build>
44         </profile>
45         <profile>
46             <id>integration-pairwise</id>
47             <build>
48                 <plugins>
49                     <plugin>
50                         <groupId>org.apache.maven.plugins</groupId>
51                         <artifactId>maven-surefire-plugin</artifactId>
52                         <configuration>
53                             <skipTests>true</skipTests>
54                         </configuration>
55                     </plugin>
56                 </plugins>
57             </build>
58         </profile>
59     </profiles>
60
61     <properties>
62         <java.version>8</java.version>
63         <junit-jupiter.version>5.3.1</junit-jupiter.version>
64         <junit-vintage.version>5.3.1</junit-vintage.version>
65         <junit-platform.version>1.3.1</junit-platform.version>
66         <immutables.version>2.7.5</immutables.version>
67         <assertj-core.version>3.12.2</assertj-core.version>
68         <reactor.bom.version>Californium-SR8</reactor.bom.version>
69         <slf4j.version>1.7.25</slf4j.version>
70         <logback.version>1.2.3</logback.version>
71         <mockito.version>2.28.2</mockito.version>
72         <protobuf.version>3.6.1</protobuf.version>
73         <vavr.version>0.10.2</vavr.version>
74         <commons-text.version>1.6</commons-text.version>
75         <jetbrains-annotations.version>16.0.3</jetbrains-annotations.version>
76         <protoc-jar-maven-plugin.version>3.6.0.2</protoc-jar-maven-plugin.version>
77         <testcontainers.version>1.12.0</testcontainers.version>
78         <spring.boot.version>2.2.1.RELEASE</spring.boot.version>
79         <spring.boot.version>2.1.5.RELEASE</spring.boot.version>
80         <system.rules.version>1.17.2</system.rules.version>
81     </properties>
82
83     <modules>
84         <module>rest-services</module>
85         <module>services</module>
86         <module>security</module>
87         <module>standardization</module>
88     </modules>
89
90     <build>
91         <plugins>
92             <plugin>
93                 <artifactId>maven-javadoc-plugin</artifactId>
94                 <configuration>
95                     <!-- minimize console output messages -->
96                     <quiet>true</quiet>
97                     <verbose>false</verbose>
98                     <useStandardDocletOptions>false</useStandardDocletOptions>
99                 </configuration>
100                 <executions>
101                     <execution>
102                         <id>aggregate</id>
103                         <phase>site</phase>
104                         <goals>
105                             <goal>aggregate</goal>
106                         </goals>
107                     </execution>
108                     <execution>
109                         <id>attach-javadoc</id>
110                         <goals>
111                             <goal>jar</goal>
112                         </goals>
113                     </execution>
114                 </executions>
115             </plugin>
116             <plugin>
117                 <!-- configuration taken intact from oparent -->
118                 <groupId>org.apache.maven.plugins</groupId>
119                 <artifactId>maven-failsafe-plugin</artifactId>
120             </plugin>
121         </plugins>
122
123         <pluginManagement>
124             <plugins>
125                 <plugin>
126                     <groupId>org.apache.maven.plugins</groupId>
127                     <artifactId>maven-resources-plugin</artifactId>
128                     <version>3.1.0</version>
129                     <configuration>
130                         <encoding>${project.build.sourceEncoding}</encoding>
131                     </configuration>
132                 </plugin>
133                 <plugin>
134                     <groupId>org.apache.maven.plugins</groupId>
135                     <artifactId>maven-compiler-plugin</artifactId>
136                     <version>3.8.0</version>
137                     <configuration>
138                         <source>${java.version}</source>
139                         <target>${java.version}</target>
140                         <encoding>${project.build.sourceEncoding}</encoding>
141                         <showWarnings>true</showWarnings>
142                         <showDeprecation>true</showDeprecation>
143                     </configuration>
144                 </plugin>
145                 <plugin>
146                     <groupId>org.apache.maven.plugins</groupId>
147                     <artifactId>maven-surefire-plugin</artifactId>
148                     <version>3.0.0-M3</version>
149                 </plugin>
150                 <plugin>
151                     <artifactId>maven-javadoc-plugin</artifactId>
152                     <version>3.0.1</version>
153                     <configuration>
154                         <additionalJOptions>
155                             <additionalJOption>-Xdoclint:none</additionalJOption>
156                         </additionalJOptions>
157                     </configuration>
158                 </plugin>
159                 <plugin>
160                     <artifactId>maven-project-info-reports-plugin</artifactId>
161                     <version>2.9</version>
162                 </plugin>
163                 <plugin>
164                     <groupId>org.codehaus.mojo</groupId>
165                     <artifactId>build-helper-maven-plugin</artifactId>
166                     <version>1.7</version>
167                 </plugin>
168                 <plugin>
169                     <groupId>com.github.os72</groupId>
170                     <artifactId>protoc-jar-maven-plugin</artifactId>
171                     <version>${protoc-jar-maven-plugin.version}</version>
172                 </plugin>
173             </plugins>
174         </pluginManagement>
175     </build>
176
177     <reporting>
178         <plugins>
179             <plugin>
180                 <artifactId>maven-project-info-reports-plugin</artifactId>
181                 <reportSets>
182                     <reportSet>
183                         <reports>
184                             <report>dependencies</report>
185                             <report>license</report>
186                         </reports>
187                     </reportSet>
188                 </reportSets>
189             </plugin>
190         </plugins>
191     </reporting>
192
193     <dependencyManagement>
194         <dependencies>
195             <dependency>
196                 <groupId>com.google.protobuf</groupId>
197                 <artifactId>protobuf-java</artifactId>
198                 <version>${protobuf.version}</version>
199             </dependency>
200             <dependency>
201                 <groupId>org.immutables</groupId>
202                 <artifactId>value</artifactId>
203                 <version>${immutables.version}</version>
204                 <scope>provided</scope>
205             </dependency>
206             <dependency>
207                 <groupId>org.immutables</groupId>
208                 <artifactId>gson</artifactId>
209                 <version>${immutables.version}</version>
210             </dependency>
211             <dependency>
212                 <groupId>io.vavr</groupId>
213                 <artifactId>vavr</artifactId>
214                 <version>${vavr.version}</version>
215             </dependency>
216             <dependency>
217                 <groupId>org.apache.commons</groupId>
218                 <artifactId>commons-text</artifactId>
219                 <version>${commons-text.version}</version>
220             </dependency>
221             <dependency>
222                 <groupId>org.slf4j</groupId>
223                 <artifactId>jul-to-slf4j</artifactId>
224                 <version>${slf4j.version}</version>
225             </dependency>
226             <dependency>
227                 <groupId>org.slf4j</groupId>
228                 <artifactId>log4j-over-slf4j</artifactId>
229                 <version>${slf4j.version}</version>
230             </dependency>
231             <dependency>
232                 <groupId>org.slf4j</groupId>
233                 <artifactId>slf4j-api</artifactId>
234                 <version>${slf4j.version}</version>
235             </dependency>
236             <dependency>
237                 <artifactId>spring-boot-dependencies</artifactId>
238                 <groupId>org.springframework.boot</groupId>
239                 <version>${spring.boot.version}</version>
240                 <type>pom</type>
241                 <scope>import</scope>
242             </dependency>
243             <dependency>
244                 <groupId>org.jetbrains</groupId>
245                 <artifactId>annotations</artifactId>
246                 <version>${jetbrains-annotations.version}</version>
247             </dependency>
248             <dependency>
249                 <groupId>io.projectreactor</groupId>
250                 <artifactId>reactor-bom</artifactId>
251                 <version>${reactor.bom.version}</version>
252                 <type>pom</type>
253                 <scope>import</scope>
254             </dependency>
255             <dependency>
256                 <groupId>ch.qos.logback</groupId>
257                 <artifactId>logback-classic</artifactId>
258                 <version>${logback.version}</version>
259                 <scope>runtime</scope>
260             </dependency>
261             <dependency>
262                 <groupId>org.slf4j</groupId>
263                 <artifactId>jcl-over-slf4j</artifactId>
264                 <version>1.7.26</version>
265                 <scope>runtime</scope>
266             </dependency>
267
268             <dependency>
269                 <groupId>com.github.stefanbirkner</groupId>
270                 <artifactId>system-rules</artifactId>
271                 <version>${system.rules.version}</version>
272                 <scope>test</scope>
273             </dependency>
274             <dependency>
275                 <groupId>org.mockito</groupId>
276                 <artifactId>mockito-core</artifactId>
277                 <version>${mockito.version}</version>
278                 <scope>test</scope>
279             </dependency>
280             <dependency>
281                 <groupId>org.junit.jupiter</groupId>
282                 <artifactId>junit-jupiter-engine</artifactId>
283                 <version>${junit-jupiter.version}</version>
284                 <scope>test</scope>
285             </dependency>
286             <dependency>
287                 <groupId>org.junit.jupiter</groupId>
288                 <artifactId>junit-jupiter-api</artifactId>
289                 <version>${junit-jupiter.version}</version>
290                 <scope>test</scope>
291             </dependency>
292             <dependency>
293                 <groupId>org.assertj</groupId>
294                 <artifactId>assertj-core</artifactId>
295                 <version>${assertj-core.version}</version>
296                 <scope>test</scope>
297             </dependency>
298             <dependency>
299                 <groupId>org.testcontainers</groupId>
300                 <artifactId>testcontainers</artifactId>
301                 <version>${testcontainers.version}</version>
302                 <scope>test</scope>
303             </dependency>
304             <dependency>
305                 <groupId>org.testcontainers</groupId>
306                 <artifactId>junit-jupiter</artifactId>
307                 <version>${testcontainers.version}</version>
308                 <scope>test</scope>
309             </dependency>
310         </dependencies>
311     </dependencyManagement>
312 </project>