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