forked from mariofusco/kie-commons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
81 lines (72 loc) · 2.68 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
<?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>
<parent>
<groupId>org.kie</groupId>
<artifactId>kie-parent-with-dependencies</artifactId>
<version>6.1.0-SNAPSHOT</version>
<!-- relativePath causes out-of-date problems on hudson slaves -->
<!--<relativePath>../droolsjbpm-build-bootstrap/pom.xml</relativePath>-->
</parent>
<groupId>org.kie.commons</groupId>
<artifactId>kie-commons</artifactId>
<packaging>pom</packaging>
<name>Kie Commons</name>
<description>
Collection of reusable Java components from the KIE team.
</description>
<repositories>
<!-- Bootstrap repository to locate the parent pom when the parent pom has not been build locally. -->
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
</repositories>
<scm>
<connection>scm:git:[email protected]:droolsjbpm/kie-commons.git</connection>
<developerConnection>scm:git:[email protected]:droolsjbpm/kie-commons.git</developerConnection>
<url>https://github.com/droolsjbpm/kie-commons</url>
</scm>
<modules>
<module>kie-commons-validation</module>
<module>kie-commons-regex</module>
<module>kie-commons-data</module>
<module>kie-nio2-backport</module>
<module>kie-commons-io</module>
<module>kie-commons-cdi</module>
<module>kieora</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin><!-- TODO remove me because it's part of the droolsjbpm release lifecycle -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<!-- Manually push changes (including git tags) after nexus staged repo is successfully closed -->
<pushChanges>false</pushChanges>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>