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> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 9 | <version>1.4.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> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 16 | <maven.compiler.target>1.8</maven.compiler.target> |
| 17 | <maven.compiler.source>1.8</maven.compiler.source> |
| 18 | </properties> |
| 19 | |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 20 | <build> |
| 21 | <plugins> |
| 22 | <plugin> |
| 23 | <groupId>org.apache.maven.plugins</groupId> |
| 24 | <artifactId>maven-compiler-plugin</artifactId> |
| 25 | <executions> |
| 26 | <execution> |
| 27 | <id>test-compile</id> |
| 28 | <phase>compile</phase> |
| 29 | <goals> |
| 30 | <goal>testCompile</goal> |
| 31 | </goals> |
| 32 | <configuration> |
| 33 | <skip>false</skip> |
| 34 | </configuration> |
| 35 | </execution> |
| 36 | </executions> |
| 37 | </plugin> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 38 | |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-jar-plugin</artifactId> |
Rob Daugherty | d750eab | 2017-11-08 18:35:49 -0500 | [diff] [blame] | 42 | <version>3.0.2</version> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 43 | <executions> |
| 44 | <execution> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 45 | <goals> |
| 46 | <goal>test-jar</goal> |
| 47 | </goals> |
| 48 | <configuration> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 49 | <skip>false</skip> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 50 | <excludes> |
| 51 | <exclude>**/validation/*</exclude> |
| 52 | </excludes> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 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> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 132 | </includes> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 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> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 143 | </includes> |
Benjamin, Max (mb388a) | 69455a2 | 2018-09-04 11:21:02 -0400 | [diff] [blame] | 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> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 154 | </includes> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 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> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 162 | <!--This plugin's configuration is used to store Eclipse m2e settings |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 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> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 200 | <!-- Import dependency management from camunda --> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 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> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 211 | <groupId>org.camunda.bpm.springboot</groupId> |
| 212 | <artifactId>camunda-bpm-spring-boot-starter</artifactId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 213 | <version>${camunda.springboot.version}</version> |
| 214 | <scope>test</scope> |
| 215 | </dependency> |
| 216 | <dependency> |
| 217 | <groupId>org.springframework.cloud</groupId> |
| 218 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
| 219 | <version>1.2.4.RELEASE</version> |
| 220 | <scope>test</scope> |
| 221 | </dependency> |
| 222 | <dependency> |
| 223 | <groupId>org.springframework.boot</groupId> |
| 224 | <artifactId>spring-boot-starter-test</artifactId> |
| 225 | <scope>test</scope> |
| 226 | </dependency> |
| 227 | <dependency> |
| 228 | <groupId>org.camunda.bpm.extension.mockito</groupId> |
| 229 | <artifactId>camunda-bpm-mockito</artifactId> |
| 230 | <version>3.2.1</version> |
| 231 | <scope>test</scope> |
| 232 | </dependency> |
| 233 | <dependency> |
| 234 | <groupId>org.camunda.connect</groupId> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 235 | <artifactId>camunda-connect-connectors-all</artifactId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 236 | </dependency> |
| 237 | <dependency> |
| 238 | <groupId>commons-beanutils</groupId> |
| 239 | <artifactId>commons-beanutils</artifactId> |
| 240 | <version>1.9.3</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 241 | </dependency> |
| 242 | <dependency> |
| 243 | <groupId>org.springframework.boot</groupId> |
| 244 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 245 | </dependency> |
| 246 | <dependency> |
| 247 | <groupId>org.springframework.boot</groupId> |
| 248 | <artifactId>spring-boot-starter-web</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 249 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 250 | <dependency> |
| 251 | <!-- Needed for InMemoryH2Test --> |
| 252 | <groupId>com.h2database</groupId> |
| 253 | <artifactId>h2</artifactId> |
| 254 | <scope>test</scope> |
| 255 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 256 | <dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 257 | <groupId>org.codehaus.groovy</groupId> |
| 258 | <artifactId>groovy-all</artifactId> |
| 259 | </dependency> |
| 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>MSOCoreBPMN</artifactId> |
| 263 | <version>${project.version}</version> |
| 264 | </dependency> |
| 265 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 266 | <groupId>org.onap.so</groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 267 | <artifactId>mso-catalog-db</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 268 | <version>${project.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 269 | </dependency> |
| 270 | <dependency> |
| 271 | <groupId>org.onap.so</groupId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 272 | <artifactId>mso-requests-db</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 273 | <version>${project.version}</version> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 274 | </dependency> |
| 275 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 276 | <groupId>org.onap.so</groupId> |
Rob Daugherty | d750eab | 2017-11-08 18:35:49 -0500 | [diff] [blame] | 277 | <artifactId>common</artifactId> |
| 278 | <version>${project.version}</version> |
| 279 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 280 | <dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 281 | <groupId>org.onap.so.adapters</groupId> |
| 282 | <artifactId>mso-adapters-rest-interface</artifactId> |
| 283 | <version>${project.version}</version> |
| 284 | </dependency> |
| 285 | <dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 286 | <groupId>javax.servlet</groupId> |
| 287 | <artifactId>javax.servlet-api</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 288 | </dependency> |
| 289 | <dependency> |
Arthur Martella | fcc1cbc | 2018-03-28 00:30:10 -0400 | [diff] [blame] | 290 | <groupId>org.apache.httpcomponents</groupId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 291 | <artifactId>httpclient</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 292 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 293 | <dependency> |
| 294 | <groupId>commons-lang</groupId> |
| 295 | <artifactId>commons-lang</artifactId> |
| 296 | <version>2.6</version> |
| 297 | </dependency> |
| 298 | <dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 299 | <groupId>com.jayway.jsonpath</groupId> |
| 300 | <artifactId>json-path</artifactId> |
Byung-Woo Jun | 5c3d00a | 2018-03-27 15:00:06 -0400 | [diff] [blame] | 301 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 302 | <dependency> |
| 303 | <groupId>javax.ws.rs</groupId> |
| 304 | <artifactId>javax.ws.rs-api</artifactId> |
| 305 | <version>${jax.ws.rs}</version> |
| 306 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 307 | |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 308 | <dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 309 | <groupId>org.onap.appc.client</groupId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 310 | <artifactId>client-lib</artifactId> |
Michal Kabaj | 68e1a27 | 2018-06-29 13:09:33 +0200 | [diff] [blame] | 311 | <version>1.3.0</version> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 312 | <exclusions> |
| 313 | <exclusion> |
| 314 | <groupId>org.mockito</groupId> |
| 315 | <artifactId>mockito-core</artifactId> |
| 316 | </exclusion> |
| 317 | <exclusion> |
| 318 | <groupId>org.powermock</groupId> |
| 319 | <artifactId>powermock-module-junit4</artifactId> |
| 320 | </exclusion> |
| 321 | <exclusion> |
| 322 | <groupId>org.powermock</groupId> |
| 323 | <artifactId>powermock-api-mockito</artifactId> |
| 324 | </exclusion> |
| 325 | </exclusions> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 326 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 327 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 328 | <groupId>org.onap.appc.client</groupId> |
| 329 | <artifactId>client-kit</artifactId> |
| 330 | <version>1.3.0</version> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 331 | <exclusions> |
| 332 | <exclusion> |
| 333 | <groupId>org.mockito</groupId> |
| 334 | <artifactId>mockito-core</artifactId> |
| 335 | </exclusion> |
| 336 | </exclusions> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 337 | </dependency> |
| 338 | <dependency> |
| 339 | <groupId>org.aspectj</groupId> |
| 340 | <artifactId>aspectjrt</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 341 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 342 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 343 | <groupId>org.json</groupId> |
| 344 | <artifactId>json</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 345 | </dependency> |
| 346 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 347 | <groupId>org.glassfish.jersey.core</groupId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 348 | <artifactId>jersey-common</artifactId> |
| 349 | </dependency> |
| 350 | <dependency> |
| 351 | <groupId>org.glassfish.jersey.core</groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 352 | <artifactId>jersey-client</artifactId> |
| 353 | </dependency> |
| 354 | <dependency> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 355 | <groupId>org.glassfish.jersey.inject</groupId> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 356 | <artifactId>jersey-hk2</artifactId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 357 | <version>2.26</version> |
| 358 | </dependency> |
| 359 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 360 | <groupId>org.glassfish.jersey.media</groupId> |
| 361 | <artifactId>jersey-media-json-jackson</artifactId> |
| 362 | </dependency> |
| 363 | <dependency> |
| 364 | <groupId>org.onap.sdc.sdc-tosca</groupId> |
| 365 | <artifactId>sdc-tosca</artifactId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 366 | <version>1.4.1</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 367 | </dependency> |
| 368 | <dependency> |
| 369 | <groupId>org.onap.sdc.jtosca</groupId> |
| 370 | <artifactId>jtosca</artifactId> |
Smokowski, Steve (ss835w) | d6f2d23 | 2018-08-06 11:42:35 -0400 | [diff] [blame] | 371 | <version>1.4.1</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 372 | </dependency> |
| 373 | <dependency> |
| 374 | <groupId>org.springframework.boot</groupId> |
| 375 | <artifactId>spring-boot-starter-test</artifactId> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 376 | <scope>test</scope> |
| 377 | </dependency> |
| 378 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 379 | <groupId>uk.co.blackpepper.bowman</groupId> |
| 380 | <artifactId>bowman-client</artifactId> |
| 381 | <version>0.3.0</version> |
Rob Daugherty | d750eab | 2017-11-08 18:35:49 -0500 | [diff] [blame] | 382 | </dependency> |
| 383 | <dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 384 | <groupId>pl.pragmatists</groupId> |
| 385 | <artifactId>JUnitParams</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 386 | <version>1.1.0</version> |
Rob Daugherty | d750eab | 2017-11-08 18:35:49 -0500 | [diff] [blame] | 387 | </dependency> |
biniek | affcd9b | 2018-02-15 11:44:11 +0100 | [diff] [blame] | 388 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 389 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 390 | <artifactId>mariaDB4j</artifactId> |
| 391 | <version>2.2.3</version> |
biniek | affcd9b | 2018-02-15 11:44:11 +0100 | [diff] [blame] | 392 | <scope>test</scope> |
| 393 | </dependency> |
| 394 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 395 | <groupId>org.springframework.cloud</groupId> |
| 396 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
| 397 | <version>1.2.4.RELEASE</version> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 398 | <scope>test</scope> |
| 399 | </dependency> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 400 | </dependencies> |
| 401 | </project> |