forked from authzforce/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
59 lines (59 loc) · 2.01 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
<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.0.0</version>
</parent>
<artifactId>authzforce-ce-core</artifactId>
<version>21.0.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>AuthzForce - XACML-compliant Core PDP Engine and associated test modules</description>
<url>${project.url}</url>
<scm>
<!-- Used by Jenkins - Maven release plugin -->
<connection>scm:git:${git.url.base}/core.git</connection>
<developerConnection>scm:git:${git.url.base}/core.git</developerConnection>
<tag>HEAD</tag>
<!-- Publicly browsable repository URL. For example, via Gitlab web UI. -->
<url>${git.url.base}/core</url>
</scm>
<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 -->
<dependencyManagement>
<dependencies>
<!-- AuthzForce dependencies -->
<dependency>
<groupId>org.ow2.authzforce</groupId>
<artifactId>authzforce-ce-core-pdp-api</artifactId>
<version>22.0.0</version>
</dependency>
<!-- /AuthzForce dependencies -->
<!-- Test dependencies -->
<!-- /Test dependencies -->
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>pdp-engine</module>
<module>pdp-testutils</module>
<module>pdp-io-xacml-json</module>
<module>pdp-cli</module>
</modules>
</project>