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