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