forked from apache/incubator-kie-drools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
303 lines (294 loc) · 11.4 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<!-- Keep in sync with jboss-parent version in kie-user-bom-parent/pom.xml -->
<version>36</version>
</parent>
<groupId>org.kie</groupId>
<artifactId>drools-parent</artifactId>
<packaging>pom</packaging>
<version>8.41.0-SNAPSHOT</version>
<name>Drools :: Parent</name>
<description>
The repo contains all code related to Drools project.
</description>
<url>http://www.drools.org</url>
<inceptionYear>2001</inceptionYear>
<organization>
<name>JBoss by Red Hat</name>
<url>http://www.jboss.org/</url>
</organization>
<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>
<repositories>
<repository>
<!-- Duplicating the Maven Central repository here (as it is already coming from Super POM) makes the build much faster,
as the Maven Central is now treated as the first (default) repository (because it is before the JBoss.org one).
Artifacts with release (fixed) versions are being downloaded primarily from there. Without the central being the
first repository the JBoss.org Nexus would be contacted first and since it is quite slow it slows down the build.
We use JBoss.org repo only to download our SNAPSHOTs. -->
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<!-- Bootstrap repository to locate the parent pom when the parent pom has not been build locally. -->
<!-- Conventions are described in http://community.jboss.org/wiki/MavenGettingStarted-Developers -->
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<!-- Duplicating the Maven Central repository here (as it is already coming from Super POM) makes the build much faster,
as the Maven Central is now treated as the first (default) repository (because it is before the JBoss.org one).
Artifacts with release (fixed) versions are being downloaded primarily from there. Without the central being the
first repository the JBoss.org Nexus would be contacted first and since it is quite slow it slows down the build.
We use JBoss.org repo only to download our SNAPSHOTs. -->
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<scm>
<connection>scm:git:https://github.com/kiegroup/drools.git</connection>
<developerConnection>scm:git:[email protected]:kiegroup/drools.git</developerConnection>
<url>https://github.com/kiegroup/drools</url>
</scm>
<ciManagement>
<system>jenkins</system>
<url>https://jenkins-kieci.rhcloud.com</url>
</ciManagement>
<issueManagement>
<system>jira</system>
<url>https://issues.jboss.org/browse/DROOLS</url>
</issueManagement>
<developers>
<developer>
<name>All developers are listed on the team website</name>
<url>http://www.drools.org/community/team.html</url>
</developer>
</developers>
<contributors>
<contributor>
<name>All contributors are listed on the team website</name>
<url>http://www.drools.org/community/team.html</url>
</contributor>
</contributors>
<mailingLists>
<mailingList>
<name>setup</name>
<subscribe>https://groups.google.com/forum/#!forum/drools-setup</subscribe>
<unsubscribe>https://groups.google.com/forum/#!forum/drools-setup</unsubscribe>
<otherArchives>
<!-- Very old (and long deprecated) user mailing list -->
<otherArchive>http://drools.46999.n3.nabble.com/Drools-User-forum-f47000.html</otherArchive>
</otherArchives>
</mailingList>
<mailingList>
<name>usage</name>
<subscribe>https://groups.google.com/forum/#!forum/drools-usage</subscribe>
<unsubscribe>https://groups.google.com/forum/#!forum/drools-usage</unsubscribe>
</mailingList>
<mailingList>
<name>development</name>
<subscribe>https://groups.google.com/forum/#!forum/drools-development</subscribe>
<unsubscribe>https://groups.google.com/forum/#!forum/drools-development</unsubscribe>
</mailingList>
</mailingLists>
<profiles>
<profile>
<id>default</id>
<activation>
<property>
<name>!productized</name>
</property>
</activation>
<modules>
<module>bom</module>
<module>build-parent</module>
<module>kie-api</module>
<module>kie-internal</module>
<module>kie-util</module>
<module>kie-memory-compiler</module>
<module>drools-ruleunits</module>
<module>drools-wiring</module>
<module>kie-test-util</module>
<module>drools-util</module>
<module>drools-io</module>
<module>drools-core</module>
<module>drools-base</module>
<module>drools-commands</module>
<module>drools-kiesession</module>
<module>drools-ecj</module>
<module>drools-drl-ast</module>
<module>drools-drl-parser</module>
<module>drools-drl-extensions</module>
<module>drools-compiler</module>
<module>drools-mvel</module>
<module>drools-xml-support</module>
<module>drools-legacy-test-util</module>
<module>drools-tms</module>
<module>drools-beliefs</module>
<module>drools-serialization-protobuf</module>
<module>drools-traits</module>
<module>drools-verifier</module>
<module>drools-persistence</module>
<module>drools-templates</module>
<module>drools-decisiontables</module>
<module>drools-examples</module>
<module>kie-ci</module>
<module>drools-model</module>
<module>drools-examples-api</module>
<module>drools-test-coverage</module>
<module>drools-scenario-simulation</module>
<module>drools-metric</module>
<module>drools-alphanetwork-compiler</module>
<module>drools-engine</module>
<module>drools-engine-classic</module>
<module>drools-impact-analysis</module>
<module>drools-retediagram</module>
<module>drools-fastutil</module>
<module>efesto</module>
<module>kie-drl</module>
<module>kie-dmn</module>
<module>kie-pmml-trusty</module>
<module>kie-maven-plugin</module>
<module>kie-archetypes</module>
<module>drools-drl-quarkus-extension</module>
<module>jpmml-migration-recipe</module>
<module>drools-reliability</module>
<module>drools-drlonyaml-parent</module>
</modules>
</profile>
<profile>
<id>fullProfile</id>
<activation>
<property>
<name>full</name>
</property>
</activation>
<modules>
<module>drools-docs</module>
<module>drools-distribution</module>
</modules>
</profile>
<profile><!-- this profile is defined here in order to be available from the root of the drools repository and maven reactor build -->
<id>rewrite</id>
<build>
<plugins>
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>4.42.0</version>
<configuration>
<activeRecipes>
<!-- <recipe>org.drools.rewrite.PrintStackTraceToLogError</recipe>-->
<recipe>org.openrewrite.java.testing.junit5.JUnit4to5Migration</recipe>
</activeRecipes>
<configLocation>${maven.multiModuleProjectDirectory}/.openrewrite/rewrite.yml</configLocation>
<!-- see https://rewriteoss.slack.com/archives/C01A843MWG5/p1654176555223819 https://github.com/openrewrite/rewrite/issues/1596#issuecomment-1113645648 -->
<exclusions>
<exclude>*/src/test/**</exclude>
</exclusions>
</configuration>
<dependencies>
<dependency>
<groupId>org.openrewrite.recipe</groupId>
<!-- <artifactId>rewrite-logging-frameworks</artifactId>-->
<!-- <version>1.8.0</version>-->
<artifactId>rewrite-testing-frameworks</artifactId>
<version>1.23.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>productized</id>
<activation>
<property>
<name>productized</name>
</property>
</activation>
<modules>
<module>bom</module>
<module>build-parent</module>
<module>kie-api</module>
<module>kie-util</module>
<module>kie-memory-compiler</module>
<module>kie-ci</module>
<module>efesto</module>
<module>drools-util</module>
<module>drools-io</module>
<module>drools-serialization-protobuf</module>
<module>drools-legacy-test-util</module>
<module>drools-commands</module>
<module>drools-wiring</module>
<module>drools-model</module>
<module>drools-ruleunits</module>
<module>drools-core</module>
<module>drools-base</module>
<module>drools-compiler</module>
<module>drools-mvel</module>
<module>drools-kiesession</module>
<module>drools-xml-support</module>
<module>drools-tms</module>
<module>drools-ecj</module>
<module>drools-drl-ast</module>
<module>drools-drl-parser</module>
<module>drools-drl-extensions</module>
<module>drools-templates</module>
<module>drools-decisiontables</module>
<module>drools-alphanetwork-compiler</module>
<module>drools-engine</module>
<module>drools-engine-classic</module>
<module>kie-dmn</module>
<module>kie-drl</module>
<module>kie-pmml-trusty</module>
<module>kie-internal</module>
<module>kie-test-util</module>
<module>drools-drl-quarkus-extension</module>
<module>drools-reliability</module>
</modules>
</profile>
</profiles>
</project>