Smokowski, Kevin (ks6305) | 3750014 | 2019-08-06 19:36:13 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <parent> |
| 7 | <groupId>org.onap.ccsdk.parent</groupId> |
| 8 | <artifactId>binding-parent</artifactId> |
| 9 | <version>1.3.2</version> |
| 10 | <relativePath /> |
| 11 | </parent> |
| 12 | |
| 13 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 14 | <artifactId>base-http-provider</artifactId> |
| 15 | <version>0.5.1-SNAPSHOT</version> |
| 16 | <packaging>bundle</packaging> |
| 17 | |
| 18 | <dependencies> |
| 19 | <dependency> |
| 20 | <groupId>javax.ws.rs</groupId> |
| 21 | <artifactId>javax.ws.rs-api</artifactId> |
| 22 | <scope>provided</scope> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>org.slf4j</groupId> |
| 26 | <artifactId>slf4j-api</artifactId> |
| 27 | <scope>provided</scope> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.glassfish.jersey.core</groupId> |
| 31 | <artifactId>jersey-client</artifactId> |
| 32 | <version>${jersey.version}</version> |
| 33 | <scope>test</scope> |
| 34 | </dependency> |
| 35 | </dependencies> |
| 36 | </project> |