blob: b52d203f9a082c1d3dfacab39eef6a3022da0952 [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>
Piotr Jaszczyk41fddf52019-01-09 15:08:46 +010014 <version>1.1.1-SNAPSHOT</version>
wasala7b0c16b2018-11-14 12:07:35 +010015
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>
Piotr Jaszczyk41fddf52019-01-09 15:08:46 +010033 <spring.version>5.1.3.RELEASE</spring.version>
34 <spring.boot.version>2.1.1.RELEASE</spring.boot.version>
35 <reactor.bom.version>Californium-SR3</reactor.bom.version>
wasalaec06ba42018-11-16 15:08:25 +010036 <slf4j.version>1.7.25</slf4j.version>
Piotr Jaszczyk41fddf52019-01-09 15:08:46 +010037 <logback.version>1.2.3</logback.version>
38 <mockito.version>2.23.4</mockito.version>
wasala7b0c16b2018-11-14 12:07:35 +010039 </properties>
40
41 <modules>
42 <module>rest-services</module>
Piotr Jaszczyk41fddf52019-01-09 15:08:46 +010043 <module>services</module>
Zlatko Murgoski2cf4d3c2018-12-13 12:23:30 +010044 <module>security</module>
wasala7b0c16b2018-11-14 12:07:35 +010045 </modules>
46
47 <build>
48 <pluginManagement>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-resources-plugin</artifactId>
Marcin Migdal1bdf0c62018-12-07 14:34:49 +010053 <version>3.1.0</version>
wasala7b0c16b2018-11-14 12:07:35 +010054 <configuration>
55 <encoding>${project.build.sourceEncoding}</encoding>
56 </configuration>
57 </plugin>
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-compiler-plugin</artifactId>
61 <version>3.8.0</version>
62 <configuration>
63 <source>${java.version}</source>
64 <target>${java.version}</target>
65 <encoding>${project.build.sourceEncoding}</encoding>
66 <showWarnings>true</showWarnings>
67 <showDeprecation>true</showDeprecation>
68 </configuration>
69 </plugin>
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-surefire-plugin</artifactId>
73 <version>2.22.1</version>
wasala7b0c16b2018-11-14 12:07:35 +010074 </plugin>
75 <plugin>
76 <artifactId>maven-javadoc-plugin</artifactId>
77 <version>3.0.1</version>
78 </plugin>
79 <plugin>
wasala7b0c16b2018-11-14 12:07:35 +010080 <artifactId>maven-project-info-reports-plugin</artifactId>
81 <version>2.9</version>
82 </plugin>
83 </plugins>
84 </pluginManagement>
85 <plugins>
86 <plugin>
87 <artifactId>maven-javadoc-plugin</artifactId>
88 <configuration>
89 <!-- minimize console output messages -->
90 <quiet>true</quiet>
91 <verbose>false</verbose>
92 <useStandardDocletOptions>false</useStandardDocletOptions>
93 </configuration>
94 <executions>
95 <execution>
96 <id>aggregate</id>
97 <phase>site</phase>
98 <goals>
99 <goal>aggregate</goal>
100 </goals>
101 </execution>
102 <execution>
103 <id>attach-javadoc</id>
104 <goals>
105 <goal>jar</goal>
106 </goals>
107 </execution>
108 </executions>
109 </plugin>
wasala7b0c16b2018-11-14 12:07:35 +0100110 </plugins>
111 </build>
112 <reporting>
113 <plugins>
114 <plugin>
115 <artifactId>maven-project-info-reports-plugin</artifactId>
116 <reportSets>
117 <reportSet>
118 <reports>
119 <report>dependencies</report>
120 <report>license</report>
121 </reports>
122 </reportSet>
123 </reportSets>
124 </plugin>
125 </plugins>
126 </reporting>
127
128 <dependencyManagement>
129 <dependencies>
130 <dependency>
wasalaec06ba42018-11-16 15:08:25 +0100131 <groupId>org.springframework</groupId>
132 <artifactId>spring-webflux</artifactId>
133 <version>${spring.version}</version>
134 </dependency>
135 <dependency>
136 <groupId>org.springframework</groupId>
pwielebsb9f65852018-11-20 16:46:32 +0100137 <artifactId>spring-web</artifactId>
138 <version>${spring.version}</version>
139 </dependency>
140 <dependency>
141 <groupId>org.springframework</groupId>
wasalaec06ba42018-11-16 15:08:25 +0100142 <artifactId>spring-context</artifactId>
143 <version>${spring.version}</version>
144 </dependency>
145 <dependency>
pwielebsb9f65852018-11-20 16:46:32 +0100146 <groupId>org.springframework</groupId>
147 <artifactId>spring-core</artifactId>
148 <version>${spring.version}</version>
149 </dependency>
150 <dependency>
micdzied346105f2018-11-27 11:28:45 +0100151 <groupId>org.springframework.boot</groupId>
152 <artifactId>spring-boot-starter-reactor-netty</artifactId>
153 <version>${spring.boot.version}</version>
154 </dependency>
155 <dependency>
156 <groupId>org.springframework.boot</groupId>
157 <artifactId>spring-boot-starter-web</artifactId>
158 <version>${spring.boot.version}</version>
159 </dependency>
Marcin Migdal56b92252018-12-11 13:50:13 +0100160
micdzied346105f2018-11-27 11:28:45 +0100161 <dependency>
wasalaec06ba42018-11-16 15:08:25 +0100162 <groupId>org.immutables</groupId>
163 <artifactId>value</artifactId>
164 <version>${immutables.version}</version>
wasalaec06ba42018-11-16 15:08:25 +0100165 </dependency>
166 <dependency>
167 <groupId>org.immutables</groupId>
168 <artifactId>gson</artifactId>
169 <version>${immutables.version}</version>
170 </dependency>
171 <dependency>
172 <groupId>ch.qos.logback</groupId>
173 <artifactId>logback-classic</artifactId>
Piotr Jaszczyk41fddf52019-01-09 15:08:46 +0100174 <version>${logback.version}</version>
175 <scope>runtime</scope>
wasalaec06ba42018-11-16 15:08:25 +0100176 </dependency>
177 <dependency>
178 <groupId>org.slf4j</groupId>
179 <artifactId>jul-to-slf4j</artifactId>
180 <version>${slf4j.version}</version>
181 </dependency>
182 <dependency>
183 <groupId>org.slf4j</groupId>
184 <artifactId>log4j-over-slf4j</artifactId>
185 <version>${slf4j.version}</version>
186 </dependency>
187 <dependency>
micdzied346105f2018-11-27 11:28:45 +0100188 <groupId>org.slf4j</groupId>
189 <artifactId>slf4j-api</artifactId>
190 <version>${slf4j.version}</version>
Piotr Jaszczyk41fddf52019-01-09 15:08:46 +0100191 <scope>compile</scope>
Marcin Migdal75fca442018-12-07 17:17:54 +0100192 </dependency>
193 <dependency>
194 <groupId>io.projectreactor</groupId>
195 <artifactId>reactor-bom</artifactId>
Piotr Jaszczyk41fddf52019-01-09 15:08:46 +0100196 <version>${reactor.bom.version}</version>
Marcin Migdal75fca442018-12-07 17:17:54 +0100197 <type>pom</type>
198 <scope>import</scope>
199 </dependency>
Marcin Migdal75fca442018-12-07 17:17:54 +0100200 <dependency>
Piotr Jaszczyke31a7892019-01-11 14:22:08 +0100201 <groupId>org.jetbrains</groupId>
202 <artifactId>annotations</artifactId>
203 <version>16.0.3</version>
204 </dependency>
205 <dependency>
wasala7b0c16b2018-11-14 12:07:35 +0100206 <groupId>org.mockito</groupId>
207 <artifactId>mockito-core</artifactId>
pwielebsb9f65852018-11-20 16:46:32 +0100208 <version>${mockito.version}</version>
wasala7b0c16b2018-11-14 12:07:35 +0100209 <scope>test</scope>
210 </dependency>
211 <dependency>
wasala7b0c16b2018-11-14 12:07:35 +0100212 <groupId>org.junit.jupiter</groupId>
wasala7b0c16b2018-11-14 12:07:35 +0100213 <artifactId>junit-jupiter-engine</artifactId>
214 <version>${junit-jupiter.version}</version>
215 <scope>test</scope>
216 </dependency>
Piotr Jaszczyke31a7892019-01-11 14:22:08 +0100217 <dependency>
218 <groupId>org.assertj</groupId>
219 <artifactId>assertj-core</artifactId>
220 <version>3.11.1</version>
221 <scope>test</scope>
222 </dependency>
wasala7b0c16b2018-11-14 12:07:35 +0100223 </dependencies>
224 </dependencyManagement>
225</project>