Pamela Dragosh | 0b3efb8 | 2019-06-18 12:29:38 -0400 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
Pamela Dragosh | 5138956 | 2020-07-28 13:33:30 -0400 | [diff] [blame] | 2 | 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> |
Pamela Dragosh | 0ac4c6a | 2019-06-11 10:55:04 -0400 | [diff] [blame] | 5 | |
Pamela Dragosh | 5138956 | 2020-07-28 13:33:30 -0400 | [diff] [blame] | 6 | <groupId>org.onap.policy.tutorial</groupId> |
| 7 | <artifactId>tutorial</artifactId> |
| 8 | <version>0.0.1-SNAPSHOT</version> |
| 9 | <packaging>jar</packaging> |
Pamela Dragosh | 0ac4c6a | 2019-06-11 10:55:04 -0400 | [diff] [blame] | 10 | |
Pamela Dragosh | 5138956 | 2020-07-28 13:33:30 -0400 | [diff] [blame] | 11 | <name>tutorial</name> |
Pamela Dragosh | 0ac4c6a | 2019-06-11 10:55:04 -0400 | [diff] [blame] | 12 | |
Pamela Dragosh | 5138956 | 2020-07-28 13:33:30 -0400 | [diff] [blame] | 13 | <properties> |
| 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | </properties> |
Pamela Dragosh | 0ac4c6a | 2019-06-11 10:55:04 -0400 | [diff] [blame] | 16 | |
Pamela Dragosh | 5138956 | 2020-07-28 13:33:30 -0400 | [diff] [blame] | 17 | <dependencies> |
| 18 | <dependency> |
| 19 | <groupId>junit</groupId> |
| 20 | <artifactId>junit</artifactId> |
| 21 | <version>4.13</version> |
| 22 | <scope>test</scope> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 26 | <artifactId>common</artifactId> |
| 27 | <version>2.2.2</version> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.onap.policy.xacml-pdp</groupId> |
| 31 | <artifactId>xacml-test</artifactId> |
| 32 | <version>2.2.2</version> |
| 33 | <scope>test</scope> |
| 34 | </dependency> |
| 35 | </dependencies> |
| 36 | <build> |
| 37 | <plugins> |
| 38 | <plugin> |
| 39 | <groupId>org.apache.maven.plugins</groupId> |
| 40 | <artifactId>maven-compiler-plugin</artifactId> |
| 41 | <version>3.8.0</version> |
| 42 | <configuration> |
| 43 | <release>11</release> |
| 44 | </configuration> |
| 45 | </plugin> |
| 46 | </plugins> |
| 47 | </build> |
Pamela Dragosh | 0ac4c6a | 2019-06-11 10:55:04 -0400 | [diff] [blame] | 48 | </project> |