-
Notifications
You must be signed in to change notification settings - Fork 7
/
pom.xml
117 lines (102 loc) · 4.23 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?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>com.redhat.ba</groupId>
<artifactId>bom-parent</artifactId>
<version>7.13.0</version>
<packaging>pom</packaging>
<name>Red Hat Business Automation BOM Parent</name>
<description>Dependency Management BOM Parent</description>
<url>http://www.jboss.org</url>
<issueManagement>
<system>JIRA</system>
<url>https://issues.jboss.org/</url>
</issueManagement>
<scm>
<connection>scm:git:[email protected]:jboss-integration/rhba-boms.git</connection>
<developerConnection>scm:git:[email protected]:jboss-integration/rhba-boms.git</developerConnection>
<url>http://github.com/jboss-integration/rhba-boms</url>
</scm>
<developers>
<developer>
<id>jboss.org</id>
<name>JBoss.org Community</name>
<organization>JBoss.org</organization>
<organizationUrl>http://www.jboss.org</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<version.org.kie>7.74.0-SNAPSHOT</version.org.kie>
<version.org.jboss.errai>4.6.0.Final</version.org.jboss.errai>
<!-- Versions of Java EE8 spec artifacts, keep in sync with what the target EAP uses -->
<version.org.jboss.spec.jboss.jakartaee.8.0>1.0.0.Final-redhat-00003</version.org.jboss.spec.jboss.jakartaee.8.0>
<!-- Repository Deployment URLs -->
<jboss.releases.repo.url>
https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/
</jboss.releases.repo.url>
<jboss.snapshots.repo.url>
https://repository.jboss.org/nexus/content/repositories/snapshots/
</jboss.snapshots.repo.url>
</properties>
<modules>
<module>ba-bom</module>
<module>ba-platform-bom</module>
<module>jboss-jakartaee-8.0-with-ba</module>
</modules>
<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>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
</repository>
<!-- Product repository with productized (not only) EAP artifacts -->
<repository>
<id>Red Hat Product Repository</id>
<url>https://maven.repository.redhat.com/techpreview/all/</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>jboss-releases-repository</id>
<name>JBoss Releases Repository</name>
<url>${jboss.releases.repo.url}</url>
</repository>
<snapshotRepository>
<id>jboss-snapshots-repository</id>
<name>JBoss Snapshots Repository</name>
<url>${jboss.snapshots.repo.url}</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>