diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2020-02-04 11:29:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-02-04 11:29:29 +0000 |
commit | ca1c2e1701e0ee387d2f722d8b7fd23071af8e1e (patch) | |
tree | df04a77a6ae0986536876e49373d1551a92267a2 /PolicyEngineAPI/pom.xml | |
parent | e497e511b1d317b55d4e6d52122ad8e4de4b8f59 (diff) | |
parent | ce75201a88f6787c7f5aed265c32134e1a116761 (diff) |
Merge "policy/engine jdk11 junit and compilation error fixes"
Diffstat (limited to 'PolicyEngineAPI/pom.xml')
-rw-r--r-- | PolicyEngineAPI/pom.xml | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/PolicyEngineAPI/pom.xml b/PolicyEngineAPI/pom.xml index 94c06b79e..6fc135706 100644 --- a/PolicyEngineAPI/pom.xml +++ b/PolicyEngineAPI/pom.xml @@ -50,22 +50,6 @@ <version>1.2.0</version> </dependency> <dependency> - <groupId>javax.xml.ws</groupId> - <artifactId>jaxws-api</artifactId> - <version>2.3.1</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>javax.xml</groupId> - <artifactId>jaxp-api</artifactId> - <version>1.4.2</version> - </dependency> - <dependency> - <groupId>javax.xml.parsers</groupId> - <artifactId>jaxp-api</artifactId> - <version>1.4.5</version> - </dependency> - <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> @@ -114,6 +98,20 @@ <groupId>org.onap.policy.engine</groupId> <artifactId>ONAP-XACML</artifactId> <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>javax.xml.parsers</groupId> + <artifactId>jaxp-api</artifactId> + </exclusion> + <exclusion> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + </exclusion> + <exclusion> + <groupId>javax.xml</groupId> + <artifactId>jaxp-api</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies> <build> |