-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
51 lines (48 loc) · 2.03 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
<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>
<parent>
<groupId>org.ow2.authzforce</groupId>
<artifactId>authzforce-ce-parent</artifactId>
<version>9.1.0</version>
</parent>
<artifactId>authzforce-ce-restful-pdp</artifactId>
<version>7.1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>AuthzForce - Parent Project of RESTful PDP API implementation according to REST Profile of XACML 3.0</description>
<url>${project.url}</url>
<developers>
<developer>
<name>AuthzForce Team</name>
<email>See https://mail.ow2.org/wws/review/authzforce-team</email>
<organization>AuthzForce</organization>
<organizationUrl>https://github.com/authzforce</organizationUrl>
</developer>
</developers>
<scm>
<!-- Used by Jenkins - Maven release plugin -->
<connection>scm:git:${git.url.base}/restful-pdp.git</connection>
<developerConnection>scm:git:${git.url.base}/restful-pdp.git</developerConnection>
<tag>HEAD</tag>
<!-- Publicly browsable repository URL. For example, via Gitlab web UI. -->
<url>${git.url.base}/restful-pdp</url>
</scm>
<licenses>
<license>
<name>GNU General Public License v3.0</name>
<url>https://www.gnu.org/licenses/gpl-3.0-standalone.html</url>
</license>
</licenses>
<repositories>
<repository>
<!-- Required by owasp dependency-check plugin for find info (POM) about dependency org.everit.json.schema in child modules -->
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<!-- distributionManagement defined in parent POM already -->
<modules>
<module>jaxrs</module>
<module>cxf-spring-boot-server</module>
</modules>
</project>