diff options
author | adheli.tavares <adheli.tavares@est.tech> | 2023-09-06 09:54:17 +0100 |
---|---|---|
committer | adheli.tavares <adheli.tavares@est.tech> | 2023-09-22 16:02:14 +0100 |
commit | 56c7a53919852f69767f80ae5d671794a985a163 (patch) | |
tree | cd467599448b80b8f36bd53ef7c161bd7002b991 /applications/native | |
parent | 88b6b1fe6db0c107362670520b8437b1e163eec4 (diff) |
Upgrade Java 17 in xacml-pdp
Issue-ID: POLICY-4821
Change-Id: I96843c7be9f0ef93ca76c85d682fffb2bdfaff13
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'applications/native')
-rw-r--r-- | applications/native/pom.xml | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/applications/native/pom.xml b/applications/native/pom.xml index e1b49315..19e58d7d 100644 --- a/applications/native/pom.xml +++ b/applications/native/pom.xml @@ -1,28 +1,29 @@ -<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.onap.policy.xacml-pdp.applications</groupId> - <artifactId>applications</artifactId> - <version>3.0.0-SNAPSHOT</version> - </parent> +<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.onap.policy.xacml-pdp.applications</groupId> + <artifactId>applications</artifactId> + <version>3.0.1-SNAPSHOT</version> + </parent> - <artifactId>xacml-native</artifactId> + <artifactId>xacml-native</artifactId> - <name>${project.artifactId}</name> - <description>This modules contains the xacml application that evaluates native policies and requests.</description> + <name>${project.artifactId}</name> + <description>This modules contains the xacml application that evaluates native policies and requests.</description> - <dependencies> - <dependency> - <groupId>org.onap.policy.xacml-pdp.applications</groupId> - <artifactId>common</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>org.onap.policy.xacml-pdp</groupId> - <artifactId>xacml-test</artifactId> - <version>${project.version}</version> - <scope>test</scope> - </dependency> - </dependencies> + <dependencies> + <dependency> + <groupId>org.onap.policy.xacml-pdp.applications</groupId> + <artifactId>common</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.onap.policy.xacml-pdp</groupId> + <artifactId>xacml-test</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + </dependencies> </project> |