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) | 69455a2 | 2018-09-04 11:21:02 -0400 | [diff] [blame^] | 137 | <id>non-spring-tests</id> |
| 138 | <goals> |
| 139 | <goal>test</goal> |
| 140 | </goals> |
| 141 | <configuration> |
| 142 | <includes> |
| 143 | <include>**/NonSpringSuite.java</include> |
| 144 | </includes> |
| 145 | </configuration> |
| 146 | </execution> |
| 147 | <execution> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 148 | <id>groovy-tests</id> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 149 | <goals> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 150 | <goal>test</goal> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 151 | </goals> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 152 | <configuration> |
| 153 | <includes> |
| 154 | <include>**/AllGroovyTestSuites.java</include> |
| 155 | </includes> |
| 156 | </configuration> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 157 | </execution> |
| 158 | </executions> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 159 | </plugin> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 160 | </plugins> |
| 161 | <pluginManagement> |
| 162 | <plugins> |
| 163 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 164 | only. It has no influence on the Maven build itself. --> |
| 165 | <plugin> |
| 166 | <groupId>org.eclipse.m2e</groupId> |
| 167 | <artifactId>lifecycle-mapping</artifactId> |
| 168 | <version>1.0.0</version> |
| 169 | <configuration> |
| 170 | <lifecycleMappingMetadata> |
| 171 | <pluginExecutions> |
| 172 | <pluginExecution> |
| 173 | <pluginExecutionFilter> |
| 174 | <groupId> |
| 175 | org.apache.maven.plugins |
| 176 | </groupId> |
| 177 | <artifactId> |
| 178 | maven-antrun-plugin |
| 179 | </artifactId> |
| 180 | <versionRange> |
| 181 | [1.3,) |
| 182 | </versionRange> |
| 183 | <goals> |
| 184 | <goal>run</goal> |
| 185 | </goals> |
| 186 | </pluginExecutionFilter> |
| 187 | <action> |
| 188 | <ignore></ignore> |
| 189 | </action> |
| 190 | </pluginExecution> |
| 191 | </pluginExecutions> |
| 192 | </lifecycleMappingMetadata> |
| 193 | </configuration> |
| 194 | </plugin> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 195 | </plugins> |
| 196 | </pluginManagement> |
| 197 | </build> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 198 | <dependencyManagement> |
| 199 | <dependencies> |
| 200 | <dependency> |
| 201 | <groupId>org.camunda.bpm</groupId> |
| 202 | <artifactId>camunda-bom</artifactId> |
| 203 | <version>${camunda.version}</version> |
| 204 | <scope>import</scope> |
| 205 | <type>pom</type> |
| 206 | </dependency> |
| 207 | </dependencies> |
| 208 | </dependencyManagement> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 209 | <dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 210 | <dependency> |
| 211 | <groupId>commons-beanutils</groupId> |
| 212 | <artifactId>commons-beanutils</artifactId> |
| 213 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 214 | <dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 215 | <groupId>org.camunda.bpm</groupId> |
| 216 | <artifactId>camunda-engine</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 217 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 218 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 219 | <groupId>org.camunda.bpm.springboot</groupId> |
| 220 | <artifactId>camunda-bpm-spring-boot-starter</artifactId> |
| 221 | <version>2.3.0-alpha2</version> |
| 222 | </dependency> |
| 223 | <dependency> |
| 224 | <groupId>org.springframework.boot</groupId> |
| 225 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 226 | </dependency> |
| 227 | <dependency> |
| 228 | <groupId>org.springframework.boot</groupId> |
| 229 | <artifactId>spring-boot-starter-web</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 230 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 231 | <dependency> |
| 232 | <!-- Needed for InMemoryH2Test --> |
| 233 | <groupId>com.h2database</groupId> |
| 234 | <artifactId>h2</artifactId> |
| 235 | <scope>test</scope> |
| 236 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 237 | <dependency> |
| 238 | <groupId>com.fasterxml.uuid</groupId> |
| 239 | <artifactId>java-uuid-generator</artifactId> |
| 240 | </dependency> |
| 241 | <dependency> |
| 242 | <groupId>org.codehaus.groovy</groupId> |
| 243 | <artifactId>groovy-all</artifactId> |
| 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) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 247 | <artifactId>MSOCoreBPMN</artifactId> |
| 248 | <version>${project.version}</version> |
| 249 | </dependency> |
| 250 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 251 | <groupId>org.onap.so</groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 252 | <artifactId>mso-catalog-db</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 253 | <version>${project.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 254 | </dependency> |
| 255 | <dependency> |
| 256 | <groupId>org.onap.so</groupId> |
| 257 | <artifactId>mso-requests-db</artifactId> |
Benjamin, Max (mb388a) | 69455a2 | 2018-09-04 11:21:02 -0400 | [diff] [blame^] | 258 | <classifier>client</classifier> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 259 | <version>${project.version}</version> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 260 | </dependency> |
| 261 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 262 | <groupId>org.onap.so</groupId> |
Rob Daugherty | d750eab | 2017-11-08 18:35:49 -0500 | [diff] [blame] | 263 | <artifactId>common</artifactId> |
| 264 | <version>${project.version}</version> |
| 265 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 266 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 267 | <groupId>org.onap.so</groupId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 268 | <artifactId>MSORESTClient</artifactId> |
| 269 | <version>${project.version}</version> |
| 270 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 271 | <dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 272 | <groupId>org.onap.so.adapters</groupId> |
| 273 | <artifactId>mso-adapters-rest-interface</artifactId> |
| 274 | <version>${project.version}</version> |
| 275 | </dependency> |
| 276 | <dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 277 | <groupId>javax.servlet</groupId> |
| 278 | <artifactId>javax.servlet-api</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 279 | </dependency> |
| 280 | <dependency> |
Arthur Martella | fcc1cbc | 2018-03-28 00:30:10 -0400 | [diff] [blame] | 281 | <groupId>org.apache.httpcomponents</groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 282 | <artifactId>httpclient</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 283 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 284 | <dependency> |
| 285 | <groupId>commons-lang</groupId> |
| 286 | <artifactId>commons-lang</artifactId> |
| 287 | <version>2.6</version> |
| 288 | </dependency> |
| 289 | <dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 290 | <groupId>com.jayway.jsonpath</groupId> |
| 291 | <artifactId>json-path</artifactId> |
Byung-Woo Jun | 5c3d00a | 2018-03-27 15:00:06 -0400 | [diff] [blame] | 292 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 293 | <dependency> |
| 294 | <groupId>javax.ws.rs</groupId> |
| 295 | <artifactId>javax.ws.rs-api</artifactId> |
| 296 | <version>${jax.ws.rs}</version> |
| 297 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 298 | |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 299 | <dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 300 | <groupId>org.onap.appc.client</groupId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 301 | <artifactId>client-lib</artifactId> |
Michal Kabaj | 68e1a27 | 2018-06-29 13:09:33 +0200 | [diff] [blame] | 302 | <version>1.3.0</version> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 303 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 304 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 305 | <groupId>org.onap.appc.client</groupId> |
| 306 | <artifactId>client-kit</artifactId> |
| 307 | <version>1.3.0</version> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 308 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 309 | |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 310 | <dependency> |
| 311 | <groupId>org.aspectj</groupId> |
| 312 | <artifactId>aspectjrt</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 313 | </dependency> |
| 314 | |
| 315 | <dependency> |
| 316 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 317 | <artifactId>jackson-jaxrs-base</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 318 | </dependency> |
| 319 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 320 | <groupId>org.json</groupId> |
| 321 | <artifactId>json</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 322 | </dependency> |
| 323 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 324 | <groupId>org.glassfish.jersey.core</groupId> |
| 325 | <artifactId>jersey-client</artifactId> |
| 326 | </dependency> |
| 327 | <dependency> |
| 328 | <groupId>org.glassfish.jersey.media</groupId> |
| 329 | <artifactId>jersey-media-json-jackson</artifactId> |
| 330 | </dependency> |
| 331 | <dependency> |
| 332 | <groupId>org.onap.sdc.sdc-tosca</groupId> |
| 333 | <artifactId>sdc-tosca</artifactId> |
Smokowski, Steve (ss835w) | d6f2d23 | 2018-08-06 11:42:35 -0400 | [diff] [blame] | 334 | <version>1.4.1</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 335 | </dependency> |
| 336 | <dependency> |
| 337 | <groupId>org.onap.sdc.jtosca</groupId> |
| 338 | <artifactId>jtosca</artifactId> |
Smokowski, Steve (ss835w) | d6f2d23 | 2018-08-06 11:42:35 -0400 | [diff] [blame] | 339 | <version>1.4.1</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 340 | </dependency> |
| 341 | <dependency> |
| 342 | <groupId>org.springframework.boot</groupId> |
| 343 | <artifactId>spring-boot-starter-test</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 344 | <scope>test</scope> |
| 345 | </dependency> |
| 346 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 347 | <groupId>uk.co.blackpepper.bowman</groupId> |
| 348 | <artifactId>bowman-client</artifactId> |
| 349 | <version>0.3.0</version> |
Rob Daugherty | d750eab | 2017-11-08 18:35:49 -0500 | [diff] [blame] | 350 | </dependency> |
| 351 | <dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 352 | <groupId>pl.pragmatists</groupId> |
| 353 | <artifactId>JUnitParams</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 354 | <version>1.1.0</version> |
Rob Daugherty | d750eab | 2017-11-08 18:35:49 -0500 | [diff] [blame] | 355 | </dependency> |
biniek | affcd9b | 2018-02-15 11:44:11 +0100 | [diff] [blame] | 356 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 357 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 358 | <artifactId>mariaDB4j</artifactId> |
| 359 | <version>2.2.3</version> |
biniek | affcd9b | 2018-02-15 11:44:11 +0100 | [diff] [blame] | 360 | <scope>test</scope> |
| 361 | </dependency> |
| 362 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 363 | <groupId>org.springframework.cloud</groupId> |
| 364 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
| 365 | <version>1.2.4.RELEASE</version> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 366 | <scope>test</scope> |
| 367 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 368 | </dependencies> |
| 369 | </project> |