Gary Wu | 1c1fc78 | 2018-08-24 15:30:22 -0700 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 3 | <parent> |
| 4 | <groupId>org.onap.so</groupId> |
| 5 | <artifactId>bpmn</artifactId> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 6 | <version>1.4.0-SNAPSHOT</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
| 9 | <artifactId>so-bpmn-infrastructure-common</artifactId> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 10 | <packaging>jar</packaging> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 11 | <build> |
| 12 | <plugins> |
| 13 | <plugin> |
| 14 | <groupId>org.apache.cxf</groupId> |
| 15 | <artifactId>cxf-codegen-plugin</artifactId> |
| 16 | <version>2.5.2</version> |
| 17 | </plugin> |
| 18 | <plugin> |
| 19 | <groupId>org.apache.maven.plugins</groupId> |
Smokowski, Steve (ss835w) | be2ccf0 | 2018-08-09 14:24:13 -0400 | [diff] [blame] | 20 | <artifactId>maven-eclipse-plugin</artifactId> |
| 21 | <version>2.8</version> |
| 22 | <configuration> |
| 23 | <additionalProjectnatures> |
| 24 | <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature> |
| 25 | </additionalProjectnatures> |
| 26 | <sourceIncludes> |
| 27 | <sourceInclude>**/*.groovy</sourceInclude> |
| 28 | </sourceIncludes> |
| 29 | </configuration> |
| 30 | </plugin> |
| 31 | <plugin> |
| 32 | <groupId>org.codehaus.gmaven</groupId> |
| 33 | <artifactId>gmaven-plugin</artifactId> |
| 34 | <version>1.5</version> |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.codehaus.gmaven.runtime</groupId> |
| 38 | <artifactId>gmaven-runtime-2.0</artifactId> |
| 39 | <version>1.5</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.codehaus.groovy</groupId> |
| 43 | <artifactId>groovy</artifactId> |
| 44 | <version>${groovy.version}</version> |
| 45 | </dependency> |
| 46 | </dependencies> |
| 47 | <configuration> |
| 48 | <debug>false</debug> |
| 49 | <verbose>true</verbose> |
| 50 | <stacktrace>true</stacktrace> |
| 51 | <defaultScriptExtension>.groovy</defaultScriptExtension> |
| 52 | <providerSelection>2.0</providerSelection> |
| 53 | </configuration> |
| 54 | <executions> |
| 55 | <execution> |
| 56 | <goals> |
| 57 | <goal>testCompile</goal> |
| 58 | <goal>compile</goal> |
| 59 | </goals> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.maven.plugins</groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 65 | <artifactId>maven-dependency-plugin</artifactId> |
| 66 | </plugin> |
| 67 | <plugin> |
| 68 | <artifactId>maven-failsafe-plugin</artifactId> |
| 69 | <version>2.6</version> |
| 70 | <executions> |
| 71 | <execution> |
| 72 | <goals> |
| 73 | <goal>integration-test</goal> |
| 74 | <goal>verify</goal> |
| 75 | </goals> |
| 76 | </execution> |
| 77 | </executions> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | <pluginManagement> |
| 81 | <plugins> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 82 | <!--This plugin's configuration is used to store Eclipse m2e settings |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 83 | only. It has no influence on the Maven build itself. --> |
| 84 | <plugin> |
| 85 | <groupId>org.eclipse.m2e</groupId> |
| 86 | <artifactId>lifecycle-mapping</artifactId> |
| 87 | <version>1.0.0</version> |
| 88 | <configuration> |
| 89 | <lifecycleMappingMetadata> |
| 90 | <pluginExecutions> |
| 91 | <pluginExecution> |
| 92 | <pluginExecutionFilter> |
| 93 | <groupId> |
| 94 | org.apache.maven.plugins |
| 95 | </groupId> |
| 96 | <artifactId> |
| 97 | maven-antrun-plugin |
| 98 | </artifactId> |
| 99 | <versionRange> |
| 100 | [1.3,) |
| 101 | </versionRange> |
| 102 | <goals> |
| 103 | <goal>run</goal> |
| 104 | </goals> |
| 105 | </pluginExecutionFilter> |
| 106 | <action> |
Gary Wu | 1c1fc78 | 2018-08-24 15:30:22 -0700 | [diff] [blame] | 107 | <ignore/> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 108 | </action> |
| 109 | </pluginExecution> |
| 110 | </pluginExecutions> |
| 111 | </lifecycleMappingMetadata> |
| 112 | </configuration> |
| 113 | </plugin> |
| 114 | <plugin> |
| 115 | <groupId>org.apache.maven.plugins</groupId> |
| 116 | <artifactId>maven-surefire-plugin</artifactId> |
| 117 | <executions> |
| 118 | <execution> |
| 119 | <id>default-test</id> |
| 120 | <goals> |
| 121 | <goal>test</goal> |
| 122 | </goals> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 123 | <configuration> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 124 | <includes> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 125 | <include>**/AllTestsTestSuite.java</include> |
| 126 | </includes> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 127 | </configuration> |
| 128 | </execution> |
| 129 | <execution> |
| 130 | <id>tasks-test</id> |
| 131 | <goals> |
| 132 | <goal>test</goal> |
| 133 | </goals> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 134 | <configuration> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 135 | <includes> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 136 | <include>**/AllTasksTestsTestSuite.java</include> |
| 137 | </includes> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 138 | </configuration> |
| 139 | </execution> |
| 140 | </executions> |
| 141 | </plugin> |
| 142 | </plugins> |
| 143 | </pluginManagement> |
| 144 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 145 | </build> |
| 146 | |
| 147 | <dependencyManagement> |
| 148 | <dependencies> |
| 149 | <dependency> |
| 150 | <groupId>org.camunda.bpm</groupId> |
| 151 | <artifactId>camunda-bom</artifactId> |
| 152 | <version>${camunda.version}</version> |
| 153 | <scope>import</scope> |
| 154 | <type>pom</type> |
| 155 | </dependency> |
| 156 | </dependencies> |
| 157 | </dependencyManagement> |
| 158 | |
| 159 | <dependencies> |
| 160 | <dependency> |
| 161 | <groupId>org.camunda.bpm.springboot</groupId> |
| 162 | <artifactId>camunda-bpm-spring-boot-starter</artifactId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 163 | <version>${camunda.springboot.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 164 | <scope>test</scope> |
| 165 | </dependency> |
| 166 | <dependency> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 167 | <groupId>org.camunda.bpm.springboot</groupId> |
| 168 | <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId> |
| 169 | <version>${camunda.springboot.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 170 | <scope>test</scope> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 171 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 172 | <dependency> |
| 173 | <groupId>org.apache.cxf</groupId> |
| 174 | <artifactId>cxf-spring-boot-starter-jaxws</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 175 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 176 | </dependency> |
| 177 | <dependency> |
| 178 | <groupId>org.apache.cxf</groupId> |
| 179 | <artifactId>cxf-spring-boot-starter-jaxrs</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 180 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>org.apache.cxf</groupId> |
| 184 | <artifactId>cxf-rt-rs-service-description-swagger</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 185 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 186 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 187 | <dependency> |
| 188 | <groupId>com.h2database</groupId> |
| 189 | <artifactId>h2</artifactId> |
| 190 | <scope>test</scope> |
| 191 | </dependency> |
| 192 | <dependency> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 193 | <groupId>com.google.guava</groupId> |
| 194 | <artifactId>guava</artifactId> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 195 | </dependency> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 196 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 197 | <groupId>com.fasterxml.uuid</groupId> |
| 198 | <artifactId>java-uuid-generator</artifactId> |
| 199 | </dependency> |
| 200 | <dependency> |
| 201 | <groupId>org.codehaus.groovy</groupId> |
| 202 | <artifactId>groovy-all</artifactId> |
| 203 | </dependency> |
| 204 | <dependency> |
| 205 | <groupId>org.apache.commons</groupId> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 206 | <artifactId>commons-lang3</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 207 | </dependency> |
| 208 | <dependency> |
| 209 | <groupId>org.onap.so</groupId> |
| 210 | <artifactId>MSOCoreBPMN</artifactId> |
| 211 | <version>${project.version}</version> |
| 212 | </dependency> |
| 213 | <dependency> |
| 214 | <groupId>org.onap.so</groupId> |
| 215 | <artifactId>MSOCommonBPMN</artifactId> |
| 216 | <version>${project.version}</version> |
| 217 | </dependency> |
| 218 | <dependency> |
| 219 | <groupId>org.onap.so</groupId> |
| 220 | <artifactId>MSOCoreBPMN</artifactId> |
| 221 | <version>${project.version}</version> |
| 222 | <classifier>tests</classifier> |
| 223 | <scope>test</scope> |
| 224 | </dependency> |
| 225 | <dependency> |
| 226 | <groupId>javax.ws.rs</groupId> |
| 227 | <artifactId>javax.ws.rs-api</artifactId> |
Benjamin, Max (mb388a) | e4f7e56 | 2018-08-11 00:17:59 -0400 | [diff] [blame] | 228 | <version>${jax.ws.rs}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 229 | </dependency> |
| 230 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 231 | <groupId>org.camunda.spin</groupId> |
| 232 | <artifactId>camunda-spin-core</artifactId> |
| 233 | <scope>test</scope> |
| 234 | </dependency> |
| 235 | <dependency> |
| 236 | <groupId>org.camunda.spin</groupId> |
| 237 | <artifactId>camunda-spin-dataformat-all</artifactId> |
| 238 | <scope>test</scope> |
| 239 | </dependency> |
| 240 | <dependency> |
| 241 | <artifactId>camunda-spin-dataformat-all</artifactId> |
| 242 | <groupId>org.camunda.spin</groupId> |
| 243 | <scope>test</scope> |
| 244 | </dependency> |
| 245 | <dependency> |
| 246 | <groupId>org.camunda.bpm</groupId> |
| 247 | <artifactId>camunda-engine-plugin-spin</artifactId> |
| 248 | </dependency> |
| 249 | |
| 250 | <dependency> |
| 251 | <groupId>org.camunda.bpm</groupId> |
| 252 | <artifactId>camunda-engine-plugin-connect</artifactId> |
| 253 | <scope>test</scope> |
| 254 | </dependency> |
| 255 | <dependency> |
| 256 | <groupId>javax.annotation</groupId> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 257 | <artifactId>javax.annotation-api</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 258 | </dependency> |
| 259 | <dependency> |
| 260 | <groupId>org.onap.msb.java-sdk</groupId> |
| 261 | <artifactId>msb-java-sdk</artifactId> |
Gary Wu | 3c235ce | 2018-10-15 18:55:10 -0700 | [diff] [blame] | 262 | <version>1.1.1</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 263 | <exclusions> |
| 264 | <exclusion> |
| 265 | <groupId>com.eclipsesource.jaxrs</groupId> |
| 266 | <artifactId>jersey-all</artifactId> |
| 267 | </exclusion> |
| 268 | </exclusions> |
| 269 | </dependency> |
| 270 | |
| 271 | <dependency> |
| 272 | <groupId>org.springframework.boot</groupId> |
| 273 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 274 | <optional>true</optional> |
| 275 | </dependency> |
| 276 | <dependency> |
| 277 | <groupId>ch.qos.logback</groupId> |
| 278 | <artifactId>logback-classic</artifactId> |
| 279 | </dependency> |
| 280 | <dependency> |
| 281 | <groupId>ch.qos.logback</groupId> |
| 282 | <artifactId>logback-core</artifactId> |
| 283 | </dependency> |
| 284 | <dependency> |
| 285 | <groupId>org.slf4j</groupId> |
| 286 | <artifactId>slf4j-api</artifactId> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 287 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 288 | <dependency> |
| 289 | <groupId>org.mariadb.jdbc</groupId> |
| 290 | <artifactId>mariadb-java-client</artifactId> |
| 291 | </dependency> |
| 292 | <dependency> |
| 293 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 294 | <artifactId>mariaDB4j</artifactId> |
| 295 | <version>2.2.3</version> |
| 296 | <scope>test</scope> |
| 297 | </dependency> |
Smokowski, Steve (ss835w) | be2ccf0 | 2018-08-09 14:24:13 -0400 | [diff] [blame] | 298 | <dependency> |
| 299 | <groupId>org.onap.so</groupId> |
| 300 | <artifactId>MSOCommonBPMN</artifactId> |
| 301 | <version>${project.version}</version> |
| 302 | <classifier>tests</classifier> |
| 303 | <scope>test</scope> |
| 304 | </dependency> |
biniek | 68dbf00 | 2018-09-04 16:27:25 +0200 | [diff] [blame] | 305 | <dependency> |
| 306 | <groupId>org.camunda.bpm.springboot</groupId> |
| 307 | <artifactId>camunda-bpm-spring-boot-starter-test</artifactId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 308 | <version>${camunda.springboot.version}</version> |
biniek | 68dbf00 | 2018-09-04 16:27:25 +0200 | [diff] [blame] | 309 | <scope>test</scope> |
| 310 | </dependency> |
Joanna Jeremicz | 0ac8def | 2018-12-05 10:38:39 +0100 | [diff] [blame] | 311 | <dependency> |
| 312 | <groupId>org.assertj</groupId> |
| 313 | <artifactId>assertj-core</artifactId> |
| 314 | <scope>test</scope> |
| 315 | </dependency> |
| 316 | <dependency> |
| 317 | <groupId>org.camunda.bpm.extension.mockito</groupId> |
| 318 | <artifactId>camunda-bpm-mockito</artifactId> |
| 319 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 320 | </dependencies> |
| 321 | </project> |