diff options
Diffstat (limited to 'policy-endpoints/pom.xml')
-rw-r--r-- | policy-endpoints/pom.xml | 57 |
1 files changed, 34 insertions, 23 deletions
diff --git a/policy-endpoints/pom.xml b/policy-endpoints/pom.xml index dba7349f..de95eb9a 100644 --- a/policy-endpoints/pom.xml +++ b/policy-endpoints/pom.xml @@ -21,27 +21,27 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> + <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.openecomp.policy.drools-pdp</groupId> - <artifactId>drools-pdp</artifactId> - <version>1.1.0-SNAPSHOT</version> - </parent> + <parent> + <groupId>org.openecomp.policy.drools-pdp</groupId> + <artifactId>drools-pdp</artifactId> + <version>1.1.0-SNAPSHOT</version> + </parent> - <artifactId>policy-endpoints</artifactId> + <artifactId>policy-endpoints</artifactId> - <name>policy-endpoints</name> - <description>Policy UEB support</description> + <name>policy-endpoints</name> + <description>Endpoints</description> - <properties> - <maven.compiler.source>1.8</maven.compiler.source> - <maven.compiler.target>1.8</maven.compiler.target> - <jetty.version>9.3.14.v20161028</jetty.version> - - </properties> + <properties> + <maven.compiler.source>1.8</maven.compiler.source> + <maven.compiler.target>1.8</maven.compiler.target> + <jetty.version>9.3.14.v20161028</jetty.version> + </properties> <dependencies> + <dependency> <groupId>com.att.nsa</groupId> <artifactId>cambriaClient</artifactId> @@ -57,6 +57,7 @@ </exclusion> </exclusions> </dependency> + <dependency> <groupId>com.att.nsa</groupId> <artifactId>dmaapClient</artifactId> @@ -68,6 +69,7 @@ </exclusion> </exclusions> </dependency> + <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> @@ -138,26 +140,35 @@ <artifactId>swagger-jersey2-jaxrs</artifactId> </dependency> - <dependency> + <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> - <version>4.4.4</version> - </dependency> - <dependency> + </dependency> + + <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> - <version>4.5</version> - </dependency> - <dependency> - <groupId>org.apache.commons</groupId> + </dependency> + + <dependency> + <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.1</version> </dependency> + <dependency> <groupId>org.openecomp.policy.drools-pdp</groupId> <artifactId>policy-core</artifactId> <version>${project.version}</version> </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.12</version> + <scope>test</scope> + </dependency> + </dependencies> </project> |