Merge "Remove slash from endpoint builder"
[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.0-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     <properties>
28         <java.version>8</java.version>
29         <junit-jupiter.version>5.3.1</junit-jupiter.version>
30         <junit-vintage.version>5.3.1</junit-vintage.version>
31         <junit-platform.version>1.3.1</junit-platform.version>
32         <immutables.version>2.7.5</immutables.version>
33         <assertj-core.version>3.12.2</assertj-core.version>
34         <reactor.bom.version>Californium-SR8</reactor.bom.version>
35         <slf4j.version>1.7.25</slf4j.version>
36         <logback.version>1.2.3</logback.version>
37         <mockito.version>2.28.2</mockito.version>
38         <protobuf.version>3.6.1</protobuf.version>
39         <vavr.version>0.10.0</vavr.version>
40         <commons-text.version>1.6</commons-text.version>
41         <jetbrains-annotations.version>16.0.3</jetbrains-annotations.version>
42         <protoc-jar-maven-plugin.version>3.6.0.2</protoc-jar-maven-plugin.version>
43         <testcontainers.version>1.11.2</testcontainers.version>
44         <spring.boot.version>2.1.5.RELEASE</spring.boot.version>
45     </properties>
46
47     <modules>
48         <module>rest-services</module>
49         <module>services</module>
50         <module>security</module>
51         <module>standardization</module>
52     </modules>
53
54     <build>
55         <plugins>
56             <plugin>
57                 <artifactId>maven-javadoc-plugin</artifactId>
58                 <configuration>
59                     <!-- minimize console output messages -->
60                     <quiet>true</quiet>
61                     <verbose>false</verbose>
62                     <useStandardDocletOptions>false</useStandardDocletOptions>
63                 </configuration>
64                 <executions>
65                     <execution>
66                         <id>aggregate</id>
67                         <phase>site</phase>
68                         <goals>
69                             <goal>aggregate</goal>
70                         </goals>
71                     </execution>
72                     <execution>
73                         <id>attach-javadoc</id>
74                         <goals>
75                             <goal>jar</goal>
76                         </goals>
77                     </execution>
78                 </executions>
79             </plugin>
80             <plugin>
81                 <!-- configuration taken intact from oparent -->
82                 <groupId>org.apache.maven.plugins</groupId>
83                 <artifactId>maven-failsafe-plugin</artifactId>
84             </plugin>
85         </plugins>
86
87         <pluginManagement>
88             <plugins>
89                 <plugin>
90                     <groupId>org.apache.maven.plugins</groupId>
91                     <artifactId>maven-resources-plugin</artifactId>
92                     <version>3.1.0</version>
93                     <configuration>
94                         <encoding>${project.build.sourceEncoding}</encoding>
95                     </configuration>
96                 </plugin>
97                 <plugin>
98                     <groupId>org.apache.maven.plugins</groupId>
99                     <artifactId>maven-compiler-plugin</artifactId>
100                     <version>3.8.0</version>
101                     <configuration>
102                         <source>${java.version}</source>
103                         <target>${java.version}</target>
104                         <encoding>${project.build.sourceEncoding}</encoding>
105                         <showWarnings>true</showWarnings>
106                         <showDeprecation>true</showDeprecation>
107                     </configuration>
108                 </plugin>
109                 <plugin>
110                     <groupId>org.apache.maven.plugins</groupId>
111                     <artifactId>maven-surefire-plugin</artifactId>
112                     <version>2.22.1</version>
113                 </plugin>
114                 <plugin>
115                     <artifactId>maven-javadoc-plugin</artifactId>
116                     <version>3.0.1</version>
117                     <configuration>
118                         <additionalJOptions>
119                             <additionalJOption>-Xdoclint:none</additionalJOption>
120                         </additionalJOptions>
121                     </configuration>
122                 </plugin>
123                 <plugin>
124                     <artifactId>maven-project-info-reports-plugin</artifactId>
125                     <version>2.9</version>
126                 </plugin>
127                 <plugin>
128                     <groupId>org.codehaus.mojo</groupId>
129                     <artifactId>build-helper-maven-plugin</artifactId>
130                     <version>1.7</version>
131                 </plugin>
132                 <plugin>
133                     <groupId>com.github.os72</groupId>
134                     <artifactId>protoc-jar-maven-plugin</artifactId>
135                     <version>${protoc-jar-maven-plugin.version}</version>
136                 </plugin>
137             </plugins>
138         </pluginManagement>
139     </build>
140
141     <reporting>
142         <plugins>
143             <plugin>
144                 <artifactId>maven-project-info-reports-plugin</artifactId>
145                 <reportSets>
146                     <reportSet>
147                         <reports>
148                             <report>dependencies</report>
149                             <report>license</report>
150                         </reports>
151                     </reportSet>
152                 </reportSets>
153             </plugin>
154         </plugins>
155     </reporting>
156
157     <dependencyManagement>
158         <dependencies>
159             <dependency>
160                 <groupId>com.google.protobuf</groupId>
161                 <artifactId>protobuf-java</artifactId>
162                 <version>${protobuf.version}</version>
163             </dependency>
164             <dependency>
165                 <groupId>org.immutables</groupId>
166                 <artifactId>value</artifactId>
167                 <version>${immutables.version}</version>
168                 <scope>provided</scope>
169             </dependency>
170             <dependency>
171                 <groupId>org.immutables</groupId>
172                 <artifactId>gson</artifactId>
173                 <version>${immutables.version}</version>
174             </dependency>
175             <dependency>
176                 <groupId>io.vavr</groupId>
177                 <artifactId>vavr</artifactId>
178                 <version>${vavr.version}</version>
179             </dependency>
180             <dependency>
181                 <groupId>org.apache.commons</groupId>
182                 <artifactId>commons-text</artifactId>
183                 <version>${commons-text.version}</version>
184             </dependency>
185             <dependency>
186                 <groupId>org.slf4j</groupId>
187                 <artifactId>jul-to-slf4j</artifactId>
188                 <version>${slf4j.version}</version>
189             </dependency>
190             <dependency>
191                 <groupId>org.slf4j</groupId>
192                 <artifactId>log4j-over-slf4j</artifactId>
193                 <version>${slf4j.version}</version>
194             </dependency>
195             <dependency>
196                 <groupId>org.slf4j</groupId>
197                 <artifactId>slf4j-api</artifactId>
198                 <version>${slf4j.version}</version>
199             </dependency>
200             <dependency>
201                 <artifactId>spring-boot-dependencies</artifactId>
202                 <groupId>org.springframework.boot</groupId>
203                 <version>${spring.boot.version}</version>
204                 <type>pom</type>
205                 <scope>import</scope>
206             </dependency>
207             <dependency>
208                 <groupId>org.jetbrains</groupId>
209                 <artifactId>annotations</artifactId>
210                 <version>${jetbrains-annotations.version}</version>
211             </dependency>
212             <dependency>
213                 <groupId>io.projectreactor</groupId>
214                 <artifactId>reactor-bom</artifactId>
215                 <version>${reactor.bom.version}</version>
216                 <type>pom</type>
217                 <scope>import</scope>
218             </dependency>
219             <dependency>
220                 <groupId>ch.qos.logback</groupId>
221                 <artifactId>logback-classic</artifactId>
222                 <version>${logback.version}</version>
223                 <scope>runtime</scope>
224             </dependency>
225             <dependency>
226                 <groupId>org.slf4j</groupId>
227                 <artifactId>jcl-over-slf4j</artifactId>
228                 <version>1.7.26</version>
229                 <scope>runtime</scope>
230             </dependency>
231
232             <dependency>
233                 <groupId>org.mockito</groupId>
234                 <artifactId>mockito-core</artifactId>
235                 <version>${mockito.version}</version>
236                 <scope>test</scope>
237             </dependency>
238             <dependency>
239                 <groupId>org.junit.jupiter</groupId>
240                 <artifactId>junit-jupiter-engine</artifactId>
241                 <version>${junit-jupiter.version}</version>
242                 <scope>test</scope>
243             </dependency>
244             <dependency>
245                 <groupId>org.junit.jupiter</groupId>
246                 <artifactId>junit-jupiter-api</artifactId>
247                 <version>${junit-jupiter.version}</version>
248                 <scope>test</scope>
249             </dependency>
250             <dependency>
251                 <groupId>org.assertj</groupId>
252                 <artifactId>assertj-core</artifactId>
253                 <version>${assertj-core.version}</version>
254                 <scope>test</scope>
255             </dependency>
256             <dependency>
257                 <groupId>org.testcontainers</groupId>
258                 <artifactId>testcontainers</artifactId>
259                 <version>${testcontainers.version}</version>
260                 <scope>test</scope>
261             </dependency>
262             <dependency>
263                 <groupId>org.testcontainers</groupId>
264                 <artifactId>junit-jupiter</artifactId>
265                 <version>${testcontainers.version}</version>
266                 <scope>test</scope>
267             </dependency>
268         </dependencies>
269     </dependencyManagement>
270 </project>