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> |
seshukm | b9af26a | 2020-02-26 19:30:17 +0800 | [diff] [blame] | 7 | <version>1.6.0-SNAPSHOT</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 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> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 21 | <artifactId>maven-dependency-plugin</artifactId> |
| 22 | </plugin> |
| 23 | <plugin> |
| 24 | <artifactId>maven-failsafe-plugin</artifactId> |
| 25 | <version>2.6</version> |
| 26 | <executions> |
| 27 | <execution> |
| 28 | <goals> |
| 29 | <goal>integration-test</goal> |
| 30 | <goal>verify</goal> |
| 31 | </goals> |
| 32 | </execution> |
| 33 | </executions> |
| 34 | </plugin> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame^] | 35 | <plugin> |
| 36 | <groupId>org.apache.maven.plugins</groupId> |
| 37 | <artifactId>maven-compiler-plugin</artifactId> |
| 38 | <version>3.8.0</version> |
| 39 | <configuration> |
| 40 | <compilerId>groovy-eclipse-compiler</compilerId> |
| 41 | </configuration> |
| 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>org.codehaus.groovy</groupId> |
| 46 | <artifactId>groovy-eclipse-compiler</artifactId> |
| 47 | <version>3.6.0-03</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.codehaus.groovy</groupId> |
| 51 | <artifactId>groovy-eclipse-batch</artifactId> |
| 52 | <version>2.4.19-01</version> |
| 53 | </dependency> |
| 54 | </dependencies> |
| 55 | </plugin> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 56 | </plugins> |
| 57 | <pluginManagement> |
| 58 | <plugins> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 59 | <plugin> |
| 60 | <groupId>org.apache.maven.plugins</groupId> |
| 61 | <artifactId>maven-surefire-plugin</artifactId> |
| 62 | <executions> |
| 63 | <execution> |
| 64 | <id>default-test</id> |
| 65 | <goals> |
| 66 | <goal>test</goal> |
| 67 | </goals> |
| 68 | <configuration> |
| 69 | <includes> |
| 70 | <include>**/AllTestsTestSuite.java</include> |
| 71 | </includes> |
| 72 | </configuration> |
| 73 | </execution> |
| 74 | <execution> |
| 75 | <id>tasks-test</id> |
| 76 | <goals> |
| 77 | <goal>test</goal> |
| 78 | </goals> |
| 79 | <configuration> |
| 80 | <includes> |
| 81 | <include>**/AllTasksTestsTestSuite.java</include> |
| 82 | </includes> |
| 83 | </configuration> |
| 84 | </execution> |
| 85 | </executions> |
| 86 | <configuration> |
| 87 | <parallel>suites</parallel> |
| 88 | </configuration> |
| 89 | </plugin> |
| 90 | </plugins> |
| 91 | </pluginManagement> |
| 92 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 93 | </build> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 94 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 95 | <dependencyManagement> |
| 96 | <dependencies> |
| 97 | <dependency> |
| 98 | <groupId>org.camunda.bpm</groupId> |
| 99 | <artifactId>camunda-bom</artifactId> |
| 100 | <version>${camunda.version}</version> |
| 101 | <scope>import</scope> |
| 102 | <type>pom</type> |
| 103 | </dependency> |
| 104 | </dependencies> |
| 105 | </dependencyManagement> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 106 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 107 | <dependencies> |
| 108 | <dependency> |
| 109 | <groupId>org.camunda.bpm.springboot</groupId> |
| 110 | <artifactId>camunda-bpm-spring-boot-starter</artifactId> |
| 111 | <version>${camunda.springboot.version}</version> |
| 112 | <scope>test</scope> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.camunda.bpm.springboot</groupId> |
| 116 | <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId> |
| 117 | <version>${camunda.springboot.version}</version> |
| 118 | <scope>test</scope> |
| 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>org.apache.cxf</groupId> |
| 122 | <artifactId>cxf-spring-boot-starter-jaxws</artifactId> |
| 123 | <version>${cxf.version}</version> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>org.apache.cxf</groupId> |
| 127 | <artifactId>cxf-spring-boot-starter-jaxrs</artifactId> |
| 128 | <version>${cxf.version}</version> |
| 129 | </dependency> |
| 130 | <dependency> |
| 131 | <groupId>org.apache.cxf</groupId> |
| 132 | <artifactId>cxf-rt-rs-service-description-swagger</artifactId> |
| 133 | <version>${cxf.version}</version> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>com.h2database</groupId> |
| 137 | <artifactId>h2</artifactId> |
| 138 | <scope>test</scope> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>com.google.guava</groupId> |
| 142 | <artifactId>guava</artifactId> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>com.fasterxml.uuid</groupId> |
| 146 | <artifactId>java-uuid-generator</artifactId> |
| 147 | </dependency> |
| 148 | <dependency> |
| 149 | <groupId>org.codehaus.groovy</groupId> |
| 150 | <artifactId>groovy-all</artifactId> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>org.apache.commons</groupId> |
| 154 | <artifactId>commons-lang3</artifactId> |
| 155 | </dependency> |
| 156 | <dependency> |
| 157 | <groupId>org.onap.so</groupId> |
| 158 | <artifactId>MSOCoreBPMN</artifactId> |
| 159 | <version>${project.version}</version> |
| 160 | </dependency> |
| 161 | <dependency> |
| 162 | <groupId>org.onap.so</groupId> |
| 163 | <artifactId>MSOCommonBPMN</artifactId> |
| 164 | <version>${project.version}</version> |
| 165 | </dependency> |
| 166 | <dependency> |
| 167 | <groupId>org.onap.so</groupId> |
| 168 | <artifactId>MSOCoreBPMN</artifactId> |
| 169 | <version>${project.version}</version> |
| 170 | <classifier>tests</classifier> |
| 171 | <scope>test</scope> |
| 172 | </dependency> |
| 173 | <dependency> |
| 174 | <groupId>javax.ws.rs</groupId> |
| 175 | <artifactId>javax.ws.rs-api</artifactId> |
| 176 | <version>${jax.ws.rs}</version> |
| 177 | </dependency> |
| 178 | <dependency> |
| 179 | <groupId>org.camunda.spin</groupId> |
| 180 | <artifactId>camunda-spin-core</artifactId> |
| 181 | <scope>test</scope> |
| 182 | </dependency> |
| 183 | <dependency> |
| 184 | <groupId>org.camunda.spin</groupId> |
| 185 | <artifactId>camunda-spin-dataformat-all</artifactId> |
| 186 | <scope>test</scope> |
| 187 | </dependency> |
| 188 | <dependency> |
| 189 | <artifactId>camunda-spin-dataformat-all</artifactId> |
| 190 | <groupId>org.camunda.spin</groupId> |
| 191 | <scope>test</scope> |
| 192 | </dependency> |
| 193 | <dependency> |
| 194 | <groupId>org.camunda.bpm</groupId> |
| 195 | <artifactId>camunda-engine-plugin-spin</artifactId> |
| 196 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 197 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 198 | <dependency> |
| 199 | <groupId>org.camunda.bpm</groupId> |
| 200 | <artifactId>camunda-engine-plugin-connect</artifactId> |
| 201 | <scope>test</scope> |
| 202 | </dependency> |
| 203 | <dependency> |
| 204 | <groupId>javax.annotation</groupId> |
| 205 | <artifactId>javax.annotation-api</artifactId> |
| 206 | </dependency> |
| 207 | <dependency> |
| 208 | <groupId>org.onap.msb.java-sdk</groupId> |
| 209 | <artifactId>msb-java-sdk</artifactId> |
| 210 | <version>1.1.1</version> |
| 211 | <exclusions> |
| 212 | <exclusion> |
| 213 | <groupId>com.eclipsesource.jaxrs</groupId> |
| 214 | <artifactId>jersey-all</artifactId> |
| 215 | </exclusion> |
| 216 | </exclusions> |
| 217 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 218 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 219 | <dependency> |
| 220 | <groupId>org.springframework.boot</groupId> |
| 221 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 222 | <optional>true</optional> |
| 223 | </dependency> |
| 224 | <dependency> |
| 225 | <groupId>ch.qos.logback</groupId> |
| 226 | <artifactId>logback-classic</artifactId> |
| 227 | </dependency> |
| 228 | <dependency> |
| 229 | <groupId>ch.qos.logback</groupId> |
| 230 | <artifactId>logback-core</artifactId> |
| 231 | </dependency> |
| 232 | <dependency> |
| 233 | <groupId>org.slf4j</groupId> |
| 234 | <artifactId>slf4j-api</artifactId> |
| 235 | </dependency> |
| 236 | <dependency> |
| 237 | <groupId>org.mariadb.jdbc</groupId> |
| 238 | <artifactId>mariadb-java-client</artifactId> |
| 239 | </dependency> |
| 240 | <dependency> |
| 241 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 242 | <artifactId>mariaDB4j</artifactId> |
| 243 | <version>2.2.3</version> |
| 244 | <scope>test</scope> |
| 245 | </dependency> |
| 246 | <dependency> |
| 247 | <groupId>org.onap.so</groupId> |
| 248 | <artifactId>MSOCommonBPMN</artifactId> |
| 249 | <version>${project.version}</version> |
| 250 | <classifier>tests</classifier> |
| 251 | <scope>test</scope> |
| 252 | </dependency> |
| 253 | <dependency> |
| 254 | <groupId>org.camunda.bpm.springboot</groupId> |
| 255 | <artifactId>camunda-bpm-spring-boot-starter-test</artifactId> |
| 256 | <version>${camunda.springboot.version}</version> |
| 257 | <scope>test</scope> |
| 258 | </dependency> |
| 259 | <dependency> |
| 260 | <groupId>org.assertj</groupId> |
| 261 | <artifactId>assertj-core</artifactId> |
| 262 | <scope>test</scope> |
| 263 | </dependency> |
| 264 | <dependency> |
| 265 | <groupId>org.camunda.bpm.extension.mockito</groupId> |
| 266 | <artifactId>camunda-bpm-mockito</artifactId> |
| 267 | </dependency> |
| 268 | </dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 269 | </project> |