-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
161 lines (139 loc) · 4.88 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
R Service Bus
Copyright (c) Copyright of Open Analytics NV, 2010-2023
===========================================================================
This file is part of R Service Bus.
R Service Bus is free software: you can redistribute it and/or modify
it under the terms of the Apache License as published by
The Apache Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Apache License for more details.
You should have received a copy of the Apache License
along with R Service Bus. If not, see <http://www.apache.org/licenses/>.
@author [email protected]
-->
<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>eu.openanalytics</groupId>
<artifactId>rpooli-parent</artifactId>
<version>1.8.1-SNAPSHOT</version>
</parent>
<groupId>eu.openanalytics.rsb</groupId>
<artifactId>rsb-parent</artifactId>
<version>6.9.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>R Service Bus - Parent</name>
<description>A communication middleware and work manager for R statistic analysis jobs.</description>
<url>https://openanalytics.eu</url>
<licenses>
<license>
<name>Apache License 2.0 (Apache-2.0)</name>
<url>https://opensource.org/licenses/Apache-2.0</url>
</license>
</licenses>
<organization>
<name>Open Analytics NV</name>
<url>https://openanalytics.eu</url>
</organization>
<properties>
<jakarta.management.version>1.1.4</jakarta.management.version>
<jakarta.mail.version>1.6.7</jakarta.mail.version>
<jms.version>1.1.1</jms.version>
<activemq.version>5.17.6</activemq.version>
<jedis.version>3.10.0</jedis.version>
<htmlunit.version>2.70.0</htmlunit.version>
<soapui.version>5.7.2</soapui.version>
<tomcat.version>9.0.90</tomcat.version>
</properties>
<scm>
<url>https://github.com/openanalytics/RSB</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/openanalytics/RSB/issues</url>
</issueManagement>
<repositories>
<repository>
<id>oa-nexus-releases</id>
<name>Open Analytics Releases Repository</name>
<url>https://nexus.openanalytics.eu/repository/releases</url>
</repository>
<repository>
<id>oa-nexus-snapshots</id>
<name>Open Analytics Snapshots Repository</name>
<url>https://nexus.openanalytics.eu/repository/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>eclipse-statet</id>
<name>Eclipse StatET Repository</name>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>https://repo.eclipse.org/content/repositories/statet</url>
</repository>
<repository>
<id>smartbear-sweden-plugin-repository</id>
<url>https://www.soapui.org/repository/maven2/</url>
</repository>
</repositories>
<distributionManagement>
<snapshotRepository>
<id>oa-nexus-snapshots</id>
<name>Open Analytics Snapshots Repository</name>
<url>https://nexus.openanalytics.eu/repository/snapshots</url>
</snapshotRepository>
<repository>
<id>oa-nexus-releases</id>
<name>Open Analytics Releases Repository</name>
<url>https://nexus.openanalytics.eu/repository/releases</url>
</repository>
<site>
<id>oa-nexus-docs</id>
<name>Open Analytics Maven Docs Repository</name>
<url>dav:https://nexus.openanalytics.eu/repository/docs/rsb/${project.version}</url>
</site>
</distributionManagement>
<dependencyManagement>
<dependencies>
<!-- Testing -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.10.19</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
<build>
</build>
<modules>
<module>distribution-templates</module>
<module>rsb</module>
</modules>
<profiles>
<profile>
<id>ldap</id>
<modules>
<module>rsb-ldap</module>
</modules>
</profile>
</profiles>
</project>