Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 2 | 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> |
waqas.ikram | 9853763 | 2021-06-24 11:51:34 +0100 | [diff] [blame] | 7 | <version>1.9.0-SNAPSHOT</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 8 | </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) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 18 | <plugins> |
| 19 | <plugin> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 20 | <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) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame] | 28 | <goal>repackage</goal> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 29 | </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) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 51 | <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, Max | 2dbbd78 | 2020-06-02 23:18:13 -0400 | [diff] [blame] | 61 | <configuration> |
| 62 | <skip>false</skip> |
| 63 | </configuration> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 64 | </execution> |
| 65 | </executions> |
| 66 | </plugin> |
| 67 | <plugin> |
| 68 | <groupId>io.fabric8</groupId> |
Benjamin, Max | 5f57d09 | 2020-05-13 17:48:03 -0400 | [diff] [blame] | 69 | <artifactId>docker-maven-plugin</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 70 | <executions> |
| 71 | <execution> |
| 72 | <id>start</id> |
| 73 | </execution> |
| 74 | </executions> |
| 75 | </plugin> |
Smokowski, Steven | e4687ee | 2019-05-15 14:19:49 -0400 | [diff] [blame] | 76 | <plugin> |
| 77 | <groupId>org.apache.maven.plugins</groupId> |
| 78 | <artifactId>maven-jar-plugin</artifactId> |
| 79 | <executions> |
| 80 | <execution> |
| 81 | <id>original</id> |
Benjamin, Max | 2dbbd78 | 2020-06-02 23:18:13 -0400 | [diff] [blame] | 82 | <phase>package</phase> |
Smokowski, Steven | e4687ee | 2019-05-15 14:19:49 -0400 | [diff] [blame] | 83 | </execution> |
| 84 | </executions> |
| 85 | </plugin> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 86 | </plugins> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 87 | <pluginManagement> |
| 88 | <plugins> |
Smokowski, Steven | e4687ee | 2019-05-15 14:19:49 -0400 | [diff] [blame] | 89 | <!--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) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 91 | <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, Steven | e4687ee | 2019-05-15 14:19:49 -0400 | [diff] [blame] | 101 | org.jvnet.jax-ws-commons |
| 102 | </groupId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 103 | <artifactId> |
Smokowski, Steven | e4687ee | 2019-05-15 14:19:49 -0400 | [diff] [blame] | 104 | jaxws-maven-plugin |
| 105 | </artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 106 | <versionRange> |
Smokowski, Steven | e4687ee | 2019-05-15 14:19:49 -0400 | [diff] [blame] | 107 | [2.3,) |
| 108 | </versionRange> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 109 | <goals> |
| 110 | <goal>wsgen</goal> |
| 111 | </goals> |
| 112 | </pluginExecutionFilter> |
| 113 | <action> |
| 114 | <ignore> |
| 115 | </ignore> |
| 116 | </action> |
| 117 | </pluginExecution> |
Boslet, Cory | f5c3da8 | 2020-05-20 11:39:21 -0400 | [diff] [blame] | 118 | <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) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 131 | </pluginExecutions> |
| 132 | </lifecycleMappingMetadata> |
| 133 | </configuration> |
| 134 | </plugin> |
| 135 | </plugins> |
| 136 | </pluginManagement> |
| 137 | </build> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 138 | <dependencies> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 139 | <dependency> |
| 140 | <groupId>org.springframework.boot</groupId> |
| 141 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
BOSLET, CORY | df3c4d0 | 2021-03-17 17:33:29 -0400 | [diff] [blame] | 142 | <exclusions> |
| 143 | <exclusion> |
| 144 | <groupId>org.apache.tomcat</groupId> |
| 145 | <artifactId>tomcat-jdbc</artifactId> |
| 146 | </exclusion> |
| 147 | </exclusions> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>org.apache.cxf</groupId> |
| 151 | <artifactId>cxf-spring-boot-starter-jaxrs</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 152 | </dependency> |
| 153 | <dependency> |
| 154 | <groupId>org.apache.cxf</groupId> |
BOSLET, CORY | 8b98eb9 | 2021-03-15 11:25:54 -0400 | [diff] [blame] | 155 | <artifactId>cxf-rt-rs-service-description-openapi-v3</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 156 | </dependency> |
| 157 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 158 | <groupId>org.springframework.boot</groupId> |
| 159 | <artifactId>spring-boot-starter-test</artifactId> |
| 160 | <scope>test</scope> |
| 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>janino</groupId> |
| 164 | <artifactId>janino</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 165 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 166 | <dependency> |
| 167 | <groupId>org.pacesys.openstack4j.connectors</groupId> |
Boslet, Cory | 82b61ea | 2020-06-16 09:47:29 -0400 | [diff] [blame] | 168 | <artifactId>openstack4j-jersey2</artifactId> |
Munir Ahmad | b05c475 | 2019-10-29 09:05:04 -0400 | [diff] [blame] | 169 | <version>3.2.0</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 170 | </dependency> |
Benjamin, Max | 71d87a3 | 2020-06-24 10:44:53 -0400 | [diff] [blame] | 171 | <dependency> |
Boslet, Cory | 82b61ea | 2020-06-16 09:47:29 -0400 | [diff] [blame] | 172 | <groupId>org.glassfish.jersey.core</groupId> |
| 173 | <artifactId>jersey-client</artifactId> |
| 174 | <version>2.22.1</version> |
| 175 | </dependency> |
| 176 | <dependency> |
| 177 | <groupId>org.glassfish.jersey.media</groupId> |
| 178 | <artifactId>jersey-media-json-jackson</artifactId> |
| 179 | <version>2.22.1</version> |
| 180 | </dependency> |
| 181 | <dependency> |
| 182 | <groupId>org.glassfish.jersey.core</groupId> |
| 183 | <artifactId>jersey-common</artifactId> |
| 184 | <version>2.22.1</version> |
| 185 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 186 | <dependency> |
| 187 | <groupId>commons-collections</groupId> |
| 188 | <artifactId>commons-collections</artifactId> |
Sangalang, Felix | 785fab5 | 2019-06-21 10:46:38 -0400 | [diff] [blame] | 189 | <version>3.2.2</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 190 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 191 | <dependency> |
| 192 | <groupId>com.typesafe</groupId> |
| 193 | <artifactId>config</artifactId> |
| 194 | <version>1.3.2</version> |
| 195 | </dependency> |
| 196 | <dependency> |
| 197 | <groupId>com.google.code.findbugs</groupId> |
| 198 | <artifactId>jsr305</artifactId> |
| 199 | <version>1.3.9</version> |
| 200 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 201 | <dependency> |
| 202 | <groupId>commons-validator</groupId> |
| 203 | <artifactId>commons-validator</artifactId> |
Boslet, Cory | 2f72b37 | 2020-08-19 16:00:17 -0400 | [diff] [blame] | 204 | <version>1.4.1</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 205 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 206 | <dependency> |
| 207 | <groupId>org.onap.so.adapters</groupId> |
| 208 | <artifactId>mso-adapter-utils</artifactId> |
| 209 | <version>${project.version}</version> |
| 210 | </dependency> |
| 211 | <dependency> |
| 212 | <groupId>org.onap.so.adapters</groupId> |
| 213 | <artifactId>mso-adapters-rest-interface</artifactId> |
| 214 | <version>${project.version}</version> |
| 215 | </dependency> |
| 216 | <dependency> |
| 217 | <groupId>javax.servlet</groupId> |
| 218 | <artifactId>javax.servlet-api</artifactId> |
| 219 | <scope>test</scope> |
| 220 | </dependency> |
| 221 | <dependency> |
| 222 | <groupId>org.mariadb.jdbc</groupId> |
| 223 | <artifactId>mariadb-java-client</artifactId> |
| 224 | </dependency> |
| 225 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 226 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 227 | <artifactId>mariaDB4j</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 228 | <scope>test</scope> |
| 229 | </dependency> |
| 230 | <dependency> |
| 231 | <groupId>org.springframework.cloud</groupId> |
| 232 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 233 | <scope>test</scope> |
| 234 | </dependency> |
| 235 | <dependency> |
| 236 | <groupId>org.onap.so</groupId> |
| 237 | <artifactId>cxf-logging</artifactId> |
| 238 | <version>${project.version}</version> |
| 239 | </dependency> |
| 240 | <dependency> |
| 241 | <groupId>org.onap.so.libs.openstack-java-sdk</groupId> |
| 242 | <artifactId>nova-model</artifactId> |
| 243 | <version>${openstack.version}</version> |
| 244 | </dependency> |
| 245 | <dependency> |
| 246 | <groupId>org.camunda.bpm</groupId> |
| 247 | <artifactId>camunda-external-task-client</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 248 | </dependency> |
Boslet, Cory | 1791277 | 2020-07-07 11:49:48 -0400 | [diff] [blame] | 249 | <dependency> |
| 250 | <groupId>com.github.seancfoley</groupId> |
| 251 | <artifactId>ipaddress</artifactId> |
| 252 | <version>2.0.0</version> |
| 253 | </dependency> |
Benjamin, Max (mb388a) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame] | 254 | <dependency> |
| 255 | <groupId>org.springframework.boot</groupId> |
| 256 | <artifactId>spring-boot-starter-validation</artifactId> |
| 257 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 258 | </dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 259 | </project> |