blob: 32eb5e91301e3fecddfa9a4965ed6d605d089244 [file] [log] [blame]
wasala7b0c16b2018-11-14 12:07:35 +01001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 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>1.2.1</version>
9 <relativePath/>
10 </parent>
11
12 <groupId>org.onap.dcaegen2.services</groupId>
13 <artifactId>sdk</artifactId>
14 <version>1.0.0-SNAPSHOT</version>
15
16 <name>dcaegen2-services-sdk</name>
17 <description>Common SDK repo for all DCAE Services (R4)</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>
wasalaec06ba42018-11-16 15:08:25 +010032 <immutables.version>2.7.3</immutables.version>
Marcin Migdal75fca442018-12-07 17:17:54 +010033 <spring.version>5.1.0.RELEASE</spring.version>
micdzied346105f2018-11-27 11:28:45 +010034 <spring.boot.version>2.1.0.RELEASE</spring.boot.version>
wasalaec06ba42018-11-16 15:08:25 +010035 <slf4j.version>1.7.25</slf4j.version>
pwielebsb9f65852018-11-20 16:46:32 +010036 <mockito.version>2.16.0</mockito.version>
wasala7b0c16b2018-11-14 12:07:35 +010037 </properties>
38
39 <modules>
40 <module>rest-services</module>
41 </modules>
42
43 <build>
44 <pluginManagement>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-resources-plugin</artifactId>
Marcin Migdal1bdf0c62018-12-07 14:34:49 +010049 <version>3.1.0</version>
wasala7b0c16b2018-11-14 12:07:35 +010050 <configuration>
51 <encoding>${project.build.sourceEncoding}</encoding>
52 </configuration>
53 </plugin>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-compiler-plugin</artifactId>
57 <version>3.8.0</version>
58 <configuration>
59 <source>${java.version}</source>
60 <target>${java.version}</target>
61 <encoding>${project.build.sourceEncoding}</encoding>
62 <showWarnings>true</showWarnings>
63 <showDeprecation>true</showDeprecation>
64 </configuration>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-surefire-plugin</artifactId>
69 <version>2.22.1</version>
wasala7b0c16b2018-11-14 12:07:35 +010070 </plugin>
71 <plugin>
72 <artifactId>maven-javadoc-plugin</artifactId>
73 <version>3.0.1</version>
74 </plugin>
75 <plugin>
wasala7b0c16b2018-11-14 12:07:35 +010076 <artifactId>maven-project-info-reports-plugin</artifactId>
77 <version>2.9</version>
78 </plugin>
79 </plugins>
80 </pluginManagement>
81 <plugins>
82 <plugin>
83 <artifactId>maven-javadoc-plugin</artifactId>
84 <configuration>
85 <!-- minimize console output messages -->
86 <quiet>true</quiet>
87 <verbose>false</verbose>
88 <useStandardDocletOptions>false</useStandardDocletOptions>
89 </configuration>
90 <executions>
91 <execution>
92 <id>aggregate</id>
93 <phase>site</phase>
94 <goals>
95 <goal>aggregate</goal>
96 </goals>
97 </execution>
98 <execution>
99 <id>attach-javadoc</id>
100 <goals>
101 <goal>jar</goal>
102 </goals>
103 </execution>
104 </executions>
105 </plugin>
wasala7b0c16b2018-11-14 12:07:35 +0100106 </plugins>
107 </build>
108 <reporting>
109 <plugins>
110 <plugin>
111 <artifactId>maven-project-info-reports-plugin</artifactId>
112 <reportSets>
113 <reportSet>
114 <reports>
115 <report>dependencies</report>
116 <report>license</report>
117 </reports>
118 </reportSet>
119 </reportSets>
120 </plugin>
121 </plugins>
122 </reporting>
123
124 <dependencyManagement>
125 <dependencies>
126 <dependency>
wasalaec06ba42018-11-16 15:08:25 +0100127 <groupId>org.springframework</groupId>
128 <artifactId>spring-webflux</artifactId>
129 <version>${spring.version}</version>
130 </dependency>
131 <dependency>
132 <groupId>org.springframework</groupId>
pwielebsb9f65852018-11-20 16:46:32 +0100133 <artifactId>spring-web</artifactId>
134 <version>${spring.version}</version>
135 </dependency>
136 <dependency>
137 <groupId>org.springframework</groupId>
wasalaec06ba42018-11-16 15:08:25 +0100138 <artifactId>spring-context</artifactId>
139 <version>${spring.version}</version>
140 </dependency>
141 <dependency>
pwielebsb9f65852018-11-20 16:46:32 +0100142 <groupId>org.springframework</groupId>
143 <artifactId>spring-core</artifactId>
144 <version>${spring.version}</version>
145 </dependency>
146 <dependency>
micdzied346105f2018-11-27 11:28:45 +0100147 <groupId>org.springframework.boot</groupId>
148 <artifactId>spring-boot-starter-reactor-netty</artifactId>
149 <version>${spring.boot.version}</version>
150 </dependency>
151 <dependency>
152 <groupId>org.springframework.boot</groupId>
153 <artifactId>spring-boot-starter-web</artifactId>
154 <version>${spring.boot.version}</version>
155 </dependency>
156 <dependency>
wasalaec06ba42018-11-16 15:08:25 +0100157 <groupId>org.immutables</groupId>
158 <artifactId>value</artifactId>
159 <version>${immutables.version}</version>
wasalaec06ba42018-11-16 15:08:25 +0100160 </dependency>
161 <dependency>
162 <groupId>org.immutables</groupId>
163 <artifactId>gson</artifactId>
164 <version>${immutables.version}</version>
165 </dependency>
166 <dependency>
167 <groupId>ch.qos.logback</groupId>
168 <artifactId>logback-classic</artifactId>
wasalaec06ba42018-11-16 15:08:25 +0100169 <version>1.2.3</version>
170 </dependency>
171 <dependency>
172 <groupId>org.slf4j</groupId>
173 <artifactId>jul-to-slf4j</artifactId>
174 <version>${slf4j.version}</version>
175 </dependency>
176 <dependency>
177 <groupId>org.slf4j</groupId>
178 <artifactId>log4j-over-slf4j</artifactId>
179 <version>${slf4j.version}</version>
180 </dependency>
181 <dependency>
micdzied346105f2018-11-27 11:28:45 +0100182 <groupId>org.slf4j</groupId>
183 <artifactId>slf4j-api</artifactId>
184 <version>${slf4j.version}</version>
185 </dependency>
186 <dependency>
Marcin Migdal75fca442018-12-07 17:17:54 +0100187 <groupId>io.projectreactor.netty</groupId>
188 <artifactId>reactor-netty</artifactId>
189 <version>0.8.1.RELEASE</version>
190 </dependency>
191 <dependency>
192 <groupId>io.projectreactor</groupId>
193 <artifactId>reactor-bom</artifactId>
194 <version>Californium-SR2</version>
195 <type>pom</type>
196 <scope>import</scope>
197 </dependency>
198
199 <dependency>
wasala7b0c16b2018-11-14 12:07:35 +0100200 <groupId>org.mockito</groupId>
201 <artifactId>mockito-core</artifactId>
pwielebsb9f65852018-11-20 16:46:32 +0100202 <version>${mockito.version}</version>
wasala7b0c16b2018-11-14 12:07:35 +0100203 <scope>test</scope>
204 </dependency>
205 <dependency>
wasala7b0c16b2018-11-14 12:07:35 +0100206 <groupId>org.junit.jupiter</groupId>
wasala7b0c16b2018-11-14 12:07:35 +0100207 <artifactId>junit-jupiter-engine</artifactId>
208 <version>${junit-jupiter.version}</version>
209 <scope>test</scope>
210 </dependency>
wasala7b0c16b2018-11-14 12:07:35 +0100211 </dependencies>
212 </dependencyManagement>
213</project>