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