-
Notifications
You must be signed in to change notification settings - Fork 13
/
pom.xml
99 lines (99 loc) · 3.96 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.xacml</groupId>
<artifactId>json-pep-sdk</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>json-pep-sdk</name>
<url>http://maven.apache.org</url>
<modules>
<module>client-core</module>
<module>client-feign</module>
<module>client-feign-example</module>
<module>client-jaxrs</module>
<module>client-jaxrs-example</module>
<module>models</module>
</modules>
<dependencies>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.21</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<show>private</show>
<nohelp>true</nohelp>
</configuration>
</plugin>
</plugins>
</build>
<description>This project provides a sample PEP SDK for Java that generates a XACML request and response in
accordance with the JSON Profile of XACML WD22.
</description>
<organization>
<name>Axiomatics</name>
<url>https://www.axiomatics.com</url>
</organization>
<scm>
<url>https://github.com/davidjbrossard/java-json-pep-sdk</url>
<connection>scm:git:git://github.com/davidjbrossard/java-json-pep-sdk.git</connection>
<developerConnection>scm:git:[email protected]/davidjbrossard/java-json-pep-sdk.git</developerConnection>
</scm>
<properties>
<!-- marshalling -->
<kotlin.version>1.3.20</kotlin.version>
<jackson.version>2.12.5</jackson.version>
<jersey.version>2.31</jersey.version>
<feign.version>11.6</feign.version>
<jersey-h2.version>2.31</jersey-h2.version>
<junit.version>4.13</junit.version>
<hamcrest.version>2.2</hamcrest.version>
<!--<lombok.version>1.18.2</lombok.version>-->
<!--<swagger-maven-plugin-version>3.1.8</swagger-maven-plugin-version>-->
<maven-javadoc-plugin.version>3.0.1</maven-javadoc-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
</project>