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