blob: e975425852daca000a4ace580dd656020b00a7c3 [file] [log] [blame]
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04002 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.onap.so</groupId>
6 <artifactId>adapters</artifactId>
seshukm1c8d0202021-02-15 20:35:29 +05307 <version>1.8.0-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04008 </parent>
9 <artifactId>mso-openstack-adapters</artifactId>
10 <packaging>jar</packaging>
11 <name>mso-openstack-adapters</name>
12 <description>Consolidate openstack adapters into one Spring Boot project</description>
13 <properties>
14 <openfeign.version>10.1.0</openfeign.version>
15 </properties>
16 <build>
17 <finalName>${project.artifactId}-${project.version}</finalName>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040018 <plugins>
19 <plugin>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040020 <groupId>org.springframework.boot</groupId>
21 <artifactId>spring-boot-maven-plugin</artifactId>
22 <configuration>
23 <mainClass>org.onap.so.adapters.openstack.MsoOpenstackAdaptersApplication</mainClass>
24 </configuration>
25 <executions>
26 <execution>
27 <goals>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -050028 <goal>repackage</goal>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040029 </goals>
30 </execution>
31 </executions>
32 </plugin>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-surefire-plugin</artifactId>
36 <executions>
37 <execution>
38 <id>default-test</id>
39 <goals>
40 <goal>test</goal>
41 </goals>
42 <configuration>
43 <includes>
44 <include>**/AllTestsTestSuite.java</include>
45 </includes>
46 <parallel>suites</parallel>
47 </configuration>
48 </execution>
49 </executions>
50 </plugin>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040051 <plugin>
52 <groupId>org.jacoco</groupId>
53 <artifactId>jacoco-maven-plugin</artifactId>
54 </plugin>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-dependency-plugin</artifactId>
58 <executions>
59 <execution>
60 <id>extract-docker-file</id>
Benjamin, Max2dbbd782020-06-02 23:18:13 -040061 <configuration>
62 <skip>false</skip>
63 </configuration>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040064 </execution>
65 </executions>
66 </plugin>
67 <plugin>
68 <groupId>io.fabric8</groupId>
Benjamin, Max5f57d092020-05-13 17:48:03 -040069 <artifactId>docker-maven-plugin</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040070 <executions>
71 <execution>
72 <id>start</id>
73 </execution>
74 </executions>
75 </plugin>
Smokowski, Stevene4687ee2019-05-15 14:19:49 -040076 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-jar-plugin</artifactId>
79 <executions>
80 <execution>
81 <id>original</id>
Benjamin, Max2dbbd782020-06-02 23:18:13 -040082 <phase>package</phase>
Smokowski, Stevene4687ee2019-05-15 14:19:49 -040083 </execution>
84 </executions>
85 </plugin>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040086 </plugins>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040087 <pluginManagement>
88 <plugins>
Smokowski, Stevene4687ee2019-05-15 14:19:49 -040089 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build
90 itself. -->
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040091 <plugin>
92 <groupId>org.eclipse.m2e</groupId>
93 <artifactId>lifecycle-mapping</artifactId>
94 <version>1.0.0</version>
95 <configuration>
96 <lifecycleMappingMetadata>
97 <pluginExecutions>
98 <pluginExecution>
99 <pluginExecutionFilter>
100 <groupId>
Smokowski, Stevene4687ee2019-05-15 14:19:49 -0400101 org.jvnet.jax-ws-commons
102 </groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400103 <artifactId>
Smokowski, Stevene4687ee2019-05-15 14:19:49 -0400104 jaxws-maven-plugin
105 </artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400106 <versionRange>
Smokowski, Stevene4687ee2019-05-15 14:19:49 -0400107 [2.3,)
108 </versionRange>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400109 <goals>
110 <goal>wsgen</goal>
111 </goals>
112 </pluginExecutionFilter>
113 <action>
114 <ignore>
115 </ignore>
116 </action>
117 </pluginExecution>
Boslet, Coryf5c3da82020-05-20 11:39:21 -0400118 <pluginExecution>
119 <pluginExecutionFilter>
120 <groupId>org.apache.maven.plugins</groupId>
121 <artifactId>maven-dependency-plugin</artifactId>
122 <versionRange>[1.0.0,)</versionRange>
123 <goals>
124 <goal>unpack</goal>
125 </goals>
126 </pluginExecutionFilter>
127 <action>
128 <execute />
129 </action>
130 </pluginExecution>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400131 </pluginExecutions>
132 </lifecycleMappingMetadata>
133 </configuration>
134 </plugin>
135 </plugins>
136 </pluginManagement>
137 </build>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400138 <dependencies>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400139 <dependency>
140 <groupId>org.springframework.boot</groupId>
141 <artifactId>spring-boot-starter-data-jpa</artifactId>
142 </dependency>
143 <dependency>
144 <groupId>org.apache.cxf</groupId>
145 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400146 </dependency>
147 <dependency>
148 <groupId>org.apache.cxf</groupId>
149 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400150 </dependency>
151 <dependency>
152 <groupId>org.apache.cxf</groupId>
153 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400154 </dependency>
155 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400156 <groupId>org.springframework.boot</groupId>
157 <artifactId>spring-boot-starter-test</artifactId>
158 <scope>test</scope>
159 </dependency>
160 <dependency>
161 <groupId>janino</groupId>
162 <artifactId>janino</artifactId>
163 <version>2.5.15</version>
164 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400165 <dependency>
166 <groupId>org.pacesys.openstack4j.connectors</groupId>
Boslet, Cory82b61ea2020-06-16 09:47:29 -0400167 <artifactId>openstack4j-jersey2</artifactId>
Munir Ahmadb05c4752019-10-29 09:05:04 -0400168 <version>3.2.0</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400169 </dependency>
Benjamin, Max71d87a32020-06-24 10:44:53 -0400170 <dependency>
Boslet, Cory82b61ea2020-06-16 09:47:29 -0400171 <groupId>org.glassfish.jersey.core</groupId>
172 <artifactId>jersey-client</artifactId>
173 <version>2.22.1</version>
174 </dependency>
175 <dependency>
176 <groupId>org.glassfish.jersey.media</groupId>
177 <artifactId>jersey-media-json-jackson</artifactId>
178 <version>2.22.1</version>
179 </dependency>
180 <dependency>
181 <groupId>org.glassfish.jersey.core</groupId>
182 <artifactId>jersey-common</artifactId>
183 <version>2.22.1</version>
184 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400185 <dependency>
186 <groupId>commons-collections</groupId>
187 <artifactId>commons-collections</artifactId>
Sangalang, Felix785fab52019-06-21 10:46:38 -0400188 <version>3.2.2</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400189 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400190 <dependency>
191 <groupId>com.typesafe</groupId>
192 <artifactId>config</artifactId>
193 <version>1.3.2</version>
194 </dependency>
195 <dependency>
196 <groupId>com.google.code.findbugs</groupId>
197 <artifactId>jsr305</artifactId>
198 <version>1.3.9</version>
199 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400200 <dependency>
201 <groupId>commons-validator</groupId>
202 <artifactId>commons-validator</artifactId>
Boslet, Cory2f72b372020-08-19 16:00:17 -0400203 <version>1.4.1</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400204 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400205 <dependency>
206 <groupId>org.onap.so.adapters</groupId>
207 <artifactId>mso-adapter-utils</artifactId>
208 <version>${project.version}</version>
209 </dependency>
210 <dependency>
211 <groupId>org.onap.so.adapters</groupId>
212 <artifactId>mso-adapters-rest-interface</artifactId>
213 <version>${project.version}</version>
214 </dependency>
215 <dependency>
216 <groupId>javax.servlet</groupId>
217 <artifactId>javax.servlet-api</artifactId>
218 <scope>test</scope>
219 </dependency>
220 <dependency>
221 <groupId>org.mariadb.jdbc</groupId>
222 <artifactId>mariadb-java-client</artifactId>
223 </dependency>
224 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400225 <groupId>ch.vorburger.mariaDB4j</groupId>
226 <artifactId>mariaDB4j</artifactId>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -0500227 <version>2.3.0</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400228 <scope>test</scope>
229 </dependency>
230 <dependency>
231 <groupId>org.springframework.cloud</groupId>
232 <artifactId>spring-cloud-contract-wiremock</artifactId>
233 <version>1.2.4.RELEASE</version>
234 <scope>test</scope>
235 </dependency>
236 <dependency>
237 <groupId>org.onap.so</groupId>
238 <artifactId>cxf-logging</artifactId>
239 <version>${project.version}</version>
240 </dependency>
241 <dependency>
242 <groupId>org.onap.so.libs.openstack-java-sdk</groupId>
243 <artifactId>nova-model</artifactId>
244 <version>${openstack.version}</version>
245 </dependency>
246 <dependency>
247 <groupId>org.camunda.bpm</groupId>
248 <artifactId>camunda-external-task-client</artifactId>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -0500249 <version>1.4.0</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400250 </dependency>
Boslet, Cory17912772020-07-07 11:49:48 -0400251 <dependency>
252 <groupId>com.github.seancfoley</groupId>
253 <artifactId>ipaddress</artifactId>
254 <version>2.0.0</version>
255 </dependency>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -0500256 <dependency>
257 <groupId>org.springframework.boot</groupId>
258 <artifactId>spring-boot-starter-validation</artifactId>
259 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400260 </dependencies>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400261</project>