Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 2 | <project |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 4 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <parent> |
| 7 | <groupId>org.onap.so</groupId> |
| 8 | <artifactId>bpmn</artifactId> |
seshukm | b9af26a | 2020-02-26 19:30:17 +0800 | [diff] [blame] | 9 | <version>1.6.0-SNAPSHOT</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 10 | </parent> |
| 11 | <artifactId>MSOCommonBPMN</artifactId> |
| 12 | <name>MSOCommonBPMN</name> |
| 13 | <packaging>jar</packaging> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 14 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 15 | <properties> |
| 16 | <maven.compiler.target>1.8</maven.compiler.target> |
| 17 | <maven.compiler.source>1.8</maven.compiler.source> |
| 18 | </properties> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 19 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 20 | <build> |
| 21 | <plugins> |
| 22 | <plugin> |
| 23 | <groupId>org.apache.maven.plugins</groupId> |
| 24 | <artifactId>maven-compiler-plugin</artifactId> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 25 | <version>3.8.0</version> |
| 26 | <configuration> |
| 27 | <compilerId>groovy-eclipse-compiler</compilerId> |
| 28 | </configuration> |
| 29 | |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>org.codehaus.groovy</groupId> |
| 33 | <artifactId>groovy-eclipse-compiler</artifactId> |
| 34 | <version>3.6.0-03</version> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.codehaus.groovy</groupId> |
| 38 | <artifactId>groovy-eclipse-batch</artifactId> |
| 39 | <version>2.4.19-01</version> |
| 40 | </dependency> |
| 41 | </dependencies> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 42 | </plugin> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 43 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 44 | <plugin> |
| 45 | <groupId>org.apache.maven.plugins</groupId> |
| 46 | <artifactId>maven-jar-plugin</artifactId> |
| 47 | <version>3.0.2</version> |
| 48 | <executions> |
| 49 | <execution> |
| 50 | <goals> |
| 51 | <goal>test-jar</goal> |
| 52 | </goals> |
| 53 | <configuration> |
| 54 | <skip>false</skip> |
| 55 | <excludes> |
| 56 | <exclude>**/validation/*</exclude> |
| 57 | </excludes> |
| 58 | </configuration> |
| 59 | </execution> |
| 60 | </executions> |
| 61 | </plugin> |
| 62 | <plugin> |
| 63 | <groupId>org.apache.cxf</groupId> |
| 64 | <artifactId>cxf-codegen-plugin</artifactId> |
| 65 | <version>2.5.2</version> |
| 66 | </plugin> |
| 67 | <plugin> |
| 68 | <groupId>org.apache.maven.plugins</groupId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 69 | <artifactId>maven-surefire-plugin</artifactId> |
| 70 | <executions> |
| 71 | <execution> |
| 72 | <id>default-test</id> |
| 73 | <goals> |
| 74 | <goal>test</goal> |
| 75 | </goals> |
| 76 | <configuration> |
| 77 | <includes> |
| 78 | <include>**/AllTestSuites.java</include> |
| 79 | </includes> |
| 80 | </configuration> |
| 81 | </execution> |
| 82 | <execution> |
| 83 | <id>non-spring-tests</id> |
| 84 | <goals> |
| 85 | <goal>test</goal> |
| 86 | </goals> |
| 87 | <configuration> |
| 88 | <includes> |
| 89 | <include>**/NonSpringSuite.java</include> |
| 90 | </includes> |
| 91 | </configuration> |
| 92 | </execution> |
| 93 | <execution> |
| 94 | <id>groovy-tests</id> |
| 95 | <goals> |
| 96 | <goal>test</goal> |
| 97 | </goals> |
| 98 | <configuration> |
| 99 | <includes> |
| 100 | <include>**/AllGroovyTestSuites.java</include> |
| 101 | </includes> |
| 102 | </configuration> |
| 103 | </execution> |
| 104 | </executions> |
| 105 | <configuration> |
| 106 | <parallel>suites</parallel> |
| 107 | </configuration> |
| 108 | </plugin> |
| 109 | </plugins> |
| 110 | <pluginManagement> |
| 111 | <plugins> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 112 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 113 | only. It has no influence on the Maven build itself. --> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 114 | <plugin> |
| 115 | <groupId>org.eclipse.m2e</groupId> |
| 116 | <artifactId>lifecycle-mapping</artifactId> |
| 117 | <version>1.0.0</version> |
| 118 | <configuration> |
| 119 | <lifecycleMappingMetadata> |
| 120 | <pluginExecutions> |
| 121 | <pluginExecution> |
| 122 | <pluginExecutionFilter> |
| 123 | <groupId> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 124 | org.apache.maven.plugins |
| 125 | </groupId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 126 | <artifactId> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 127 | maven-antrun-plugin |
| 128 | </artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 129 | <versionRange> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 130 | [1.3,) |
| 131 | </versionRange> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 132 | <goals> |
| 133 | <goal>run</goal> |
| 134 | </goals> |
| 135 | </pluginExecutionFilter> |
| 136 | <action> |
| 137 | <ignore> |
| 138 | </ignore> |
| 139 | </action> |
| 140 | </pluginExecution> |
| 141 | </pluginExecutions> |
| 142 | </lifecycleMappingMetadata> |
| 143 | </configuration> |
| 144 | </plugin> |
| 145 | </plugins> |
| 146 | </pluginManagement> |
| 147 | </build> |
| 148 | <dependencyManagement> |
| 149 | <dependencies> |
| 150 | <dependency> |
| 151 | <!-- Import dependency management from camunda --> |
| 152 | <groupId>org.camunda.bpm</groupId> |
| 153 | <artifactId>camunda-bom</artifactId> |
| 154 | <version>${camunda.version}</version> |
| 155 | <scope>import</scope> |
| 156 | <type>pom</type> |
| 157 | </dependency> |
| 158 | </dependencies> |
| 159 | </dependencyManagement> |
| 160 | <dependencies> |
| 161 | <dependency> |
| 162 | <groupId>org.camunda.bpm.springboot</groupId> |
| 163 | <artifactId>camunda-bpm-spring-boot-starter</artifactId> |
| 164 | <version>${camunda.springboot.version}</version> |
| 165 | <scope>test</scope> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>org.springframework.cloud</groupId> |
| 169 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
| 170 | <version>1.2.4.RELEASE</version> |
| 171 | <scope>test</scope> |
| 172 | </dependency> |
| 173 | <dependency> |
| 174 | <groupId>org.springframework.boot</groupId> |
| 175 | <artifactId>spring-boot-starter-test</artifactId> |
| 176 | <scope>test</scope> |
| 177 | </dependency> |
| 178 | <dependency> |
| 179 | <groupId>org.camunda.bpm.extension.mockito</groupId> |
| 180 | <artifactId>camunda-bpm-mockito</artifactId> |
| 181 | <version>3.2.1</version> |
| 182 | <scope>test</scope> |
| 183 | </dependency> |
| 184 | <dependency> |
| 185 | <groupId>org.camunda.connect</groupId> |
| 186 | <artifactId>camunda-connect-connectors-all</artifactId> |
| 187 | </dependency> |
| 188 | <dependency> |
| 189 | <groupId>commons-beanutils</groupId> |
| 190 | <artifactId>commons-beanutils</artifactId> |
| 191 | <version>1.9.3</version> |
| 192 | </dependency> |
| 193 | <dependency> |
| 194 | <groupId>org.springframework.boot</groupId> |
| 195 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 196 | </dependency> |
| 197 | <dependency> |
| 198 | <groupId>org.springframework.boot</groupId> |
| 199 | <artifactId>spring-boot-starter-web</artifactId> |
| 200 | </dependency> |
| 201 | <dependency> |
| 202 | <!-- Needed for InMemoryH2Test --> |
| 203 | <groupId>com.h2database</groupId> |
| 204 | <artifactId>h2</artifactId> |
| 205 | <scope>test</scope> |
| 206 | </dependency> |
| 207 | <dependency> |
| 208 | <groupId>org.codehaus.groovy</groupId> |
| 209 | <artifactId>groovy-all</artifactId> |
| 210 | </dependency> |
| 211 | <dependency> |
| 212 | <groupId>org.onap.so</groupId> |
| 213 | <artifactId>MSOCoreBPMN</artifactId> |
| 214 | <version>${project.version}</version> |
| 215 | </dependency> |
| 216 | <dependency> |
| 217 | <groupId>org.onap.so</groupId> |
| 218 | <artifactId>mso-catalog-db</artifactId> |
| 219 | <version>${project.version}</version> |
| 220 | </dependency> |
| 221 | <dependency> |
| 222 | <groupId>org.onap.so</groupId> |
| 223 | <artifactId>mso-requests-db</artifactId> |
| 224 | <version>${project.version}</version> |
| 225 | </dependency> |
| 226 | <dependency> |
| 227 | <groupId>org.onap.so</groupId> |
| 228 | <artifactId>common</artifactId> |
| 229 | <version>${project.version}</version> |
| 230 | </dependency> |
| 231 | <dependency> |
| 232 | <groupId>org.onap.so.adapters</groupId> |
| 233 | <artifactId>mso-adapters-rest-interface</artifactId> |
| 234 | <version>${project.version}</version> |
| 235 | </dependency> |
| 236 | <dependency> |
| 237 | <groupId>javax.servlet</groupId> |
| 238 | <artifactId>javax.servlet-api</artifactId> |
| 239 | </dependency> |
| 240 | <dependency> |
| 241 | <groupId>org.apache.httpcomponents</groupId> |
| 242 | <artifactId>httpclient</artifactId> |
| 243 | </dependency> |
| 244 | <dependency> |
| 245 | <groupId>commons-lang</groupId> |
| 246 | <artifactId>commons-lang</artifactId> |
| 247 | <version>2.6</version> |
| 248 | </dependency> |
| 249 | <dependency> |
| 250 | <groupId>com.jayway.jsonpath</groupId> |
| 251 | <artifactId>json-path</artifactId> |
| 252 | </dependency> |
| 253 | <dependency> |
| 254 | <groupId>javax.ws.rs</groupId> |
| 255 | <artifactId>javax.ws.rs-api</artifactId> |
| 256 | <version>${jax.ws.rs}</version> |
| 257 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 258 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 259 | <dependency> |
| 260 | <groupId>org.onap.appc.client</groupId> |
| 261 | <artifactId>client-lib</artifactId> |
eeginux | 8ef2ec8 | 2019-05-23 10:51:36 +0100 | [diff] [blame] | 262 | <version>${appc.client.version}</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 263 | <exclusions> |
| 264 | <exclusion> |
| 265 | <groupId>org.mockito</groupId> |
| 266 | <artifactId>mockito-core</artifactId> |
| 267 | </exclusion> |
| 268 | <exclusion> |
| 269 | <groupId>org.powermock</groupId> |
| 270 | <artifactId>powermock-module-junit4</artifactId> |
| 271 | </exclusion> |
| 272 | <exclusion> |
| 273 | <groupId>org.powermock</groupId> |
| 274 | <artifactId>powermock-api-mockito</artifactId> |
| 275 | </exclusion> |
| 276 | </exclusions> |
| 277 | </dependency> |
| 278 | <dependency> |
| 279 | <groupId>org.onap.appc.client</groupId> |
| 280 | <artifactId>client-kit</artifactId> |
eeginux | 8ef2ec8 | 2019-05-23 10:51:36 +0100 | [diff] [blame] | 281 | <version>${appc.client.version}</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 282 | <exclusions> |
| 283 | <exclusion> |
| 284 | <groupId>org.mockito</groupId> |
| 285 | <artifactId>mockito-core</artifactId> |
| 286 | </exclusion> |
| 287 | </exclusions> |
| 288 | </dependency> |
| 289 | <dependency> |
| 290 | <groupId>org.aspectj</groupId> |
| 291 | <artifactId>aspectjrt</artifactId> |
| 292 | </dependency> |
| 293 | <dependency> |
| 294 | <groupId>org.json</groupId> |
| 295 | <artifactId>json</artifactId> |
| 296 | </dependency> |
| 297 | <dependency> |
| 298 | <groupId>org.glassfish.jersey.core</groupId> |
| 299 | <artifactId>jersey-common</artifactId> |
| 300 | </dependency> |
| 301 | <dependency> |
| 302 | <groupId>org.glassfish.jersey.core</groupId> |
| 303 | <artifactId>jersey-client</artifactId> |
| 304 | </dependency> |
| 305 | <dependency> |
| 306 | <groupId>org.glassfish.jersey.inject</groupId> |
| 307 | <artifactId>jersey-hk2</artifactId> |
| 308 | <version>2.26</version> |
| 309 | </dependency> |
| 310 | <dependency> |
| 311 | <groupId>org.glassfish.jersey.media</groupId> |
| 312 | <artifactId>jersey-media-json-jackson</artifactId> |
| 313 | </dependency> |
| 314 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 315 | <groupId>org.springframework.boot</groupId> |
| 316 | <artifactId>spring-boot-starter-test</artifactId> |
| 317 | <scope>test</scope> |
| 318 | </dependency> |
| 319 | <dependency> |
| 320 | <groupId>uk.co.blackpepper.bowman</groupId> |
| 321 | <artifactId>bowman-client</artifactId> |
| 322 | <version>0.3.0</version> |
| 323 | </dependency> |
| 324 | <dependency> |
| 325 | <groupId>pl.pragmatists</groupId> |
| 326 | <artifactId>JUnitParams</artifactId> |
| 327 | <version>1.1.0</version> |
| 328 | </dependency> |
| 329 | <dependency> |
| 330 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 331 | <artifactId>mariaDB4j</artifactId> |
| 332 | <version>2.2.3</version> |
| 333 | <scope>test</scope> |
| 334 | </dependency> |
| 335 | <dependency> |
| 336 | <groupId>org.springframework.cloud</groupId> |
| 337 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
| 338 | <version>1.2.4.RELEASE</version> |
| 339 | <scope>test</scope> |
| 340 | </dependency> |
| 341 | <dependency> |
| 342 | <groupId>org.assertj</groupId> |
| 343 | <artifactId>assertj-core</artifactId> |
| 344 | <version>3.11.1</version> |
| 345 | <scope>test</scope> |
| 346 | </dependency> |
| 347 | </dependencies> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 348 | </project> |