-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
executable file
·301 lines (288 loc) · 12.3 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (C) 2010-2021 Evolveum and contributors
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.0.6</version>
<!-- This parent also declares dependencies listed here:
https://docs.spring.io/spring-boot/docs/2.5.2/reference/html/dependency-versions.html#dependency-versions
Or for current version of Spring Boot:
https://docs.spring.io/spring-boot/docs/current/reference/html/appendix-dependency-versions.html
-->
</parent>
<groupId>com.evolveum.midpoint</groupId>
<artifactId>schrodinger</artifactId>
<packaging>pom</packaging>
<version>${midpoint.version}</version>
<!-- Notes
Running GUI tests from Schrodinger module
mvn clean install -P build-framework-test
-->
<name>midPoint Schrodinger</name>
<organization>
<name>evolveum</name>
<url>https://www.evolveum.com</url>
</organization>
<licenses>
<license>
<name>Apache License v2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
<license>
<name>European Union Public License</name>
<url>https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>schrodinger-framework</module>
<module>schrodinger-tests</module>
</modules>
<properties>
<selenium.version>4.9.0</selenium.version>
<selenide.version>6.13.1</selenide.version>
<testng.version>7.7.1</testng.version>
<project.source.version>11</project.source.version>
<commons.io.version>2.11.0</commons.io.version>
<surefire.version>3.0.0</surefire.version>
<quartz.version>2.3.2.e3</quartz.version>
<!--
Default Spring Boot 2.4.3 uses H2 1.4.200 but that one has NPE bug:
https://github.com/h2database/h2database/issues/1808
Sometimes occurs on heavy concurrent test, e.g. on TestDummyParallelism, but also during app run.
This bug was introduced in 1.4.198, which was major version that also changed queries in OrgClosureManager.
Between 1.4.197 and 198 changes of OrgClosureManager and around MVCC must be made (see commit history).
With 1.4.200 TestObjectLifecycleApprovalGlobal fails consistently.
197 is the last version that does not require code changes, but self-corrupts DB sometimes (MID-6510).
193 was used for 4 years with few problems, so it's still here to stay.
-->
<h2.version>1.4.193</h2.version>
<guava.version>31.1-jre</guava.version>
<midpoint.version>4.10-SNAPSHOT</midpoint.version>
<midpoint.client.version>4.10-SNAPSHOT</midpoint.client.version>
<connid.version>1.5.2.0</connid.version>
</properties>
<scm>
<connection>https://github.com/Evolveum/schrodinger.git</connection>
<developerConnection>[email protected]:Evolveum/schrodinger.git</developerConnection>
<url>https://github.com/Evolveum/schrodinger.git</url>
</scm>
<distributionManagement>
<repository>
<id>evolveum-nexus</id>
<name>Internal Releases</name>
<url>https://nexus.evolveum.com/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>evolveum-nexus</id>
<name>Internal Releases</name>
<url>https://nexus.evolveum.com/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>evolveum</id>
<name>Evolveum Public Releases</name>
<url>https://nexus.evolveum.com/nexus/content/groups/public/</url>
</repository>
<repository>
<id>evolveum-snapshots</id>
<name>Evolveum Snapshots</name>
<url>https://nexus.evolveum.com/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>evolveum</id>
<name>Evolveum</name>
<url>https://nexus.evolveum.com/nexus/content/groups/public</url>
</pluginRepository>
</pluginRepositories>
<issueManagement>
<system>Atlassian JIRA</system>
<url>https://jira.evolveum.com/browse/MID</url>
</issueManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring-framework.version}</version>
<exclusions>
<!-- replaced with jcl-over-slf4j -->
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jcl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security.extensions</groupId>
<artifactId>spring-security-saml2-core</artifactId>
<version>${spring.security.saml2.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.codeborne</groupId>
<artifactId>selenide</artifactId>
<version>${selenide.version}</version>
<exclusions>
<!-- Excluding to exclude commons-logging lower -->
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.codeborne</groupId>
<artifactId>selenide-core</artifactId>
<version>${selenide.version}</version>
<exclusions>
<!-- Excluding to exclude commons-logging lower -->
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
<exclusions>
<!-- replaced by org.slf4j:jcl-over-slf4j -->
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
</dependency>
<dependency>
<groupId>com.evolveum.commons</groupId>
<artifactId>test-ng</artifactId>
<version>${midpoint.version}</version>
</dependency>
<dependency>
<groupId>com.evolveum.midpoint.repo</groupId>
<artifactId>repo-sql-impl-test</artifactId>
<version>${midpoint.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>${quartz.version}</version>
<exclusions>
<exclusion>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
</exclusion>
<exclusion>
<groupId>com.mchange</groupId>
<artifactId>mchange-commons-java</artifactId>
</exclusion>
<exclusion>
<groupId>com.zaxxer</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.tirasa.connid</groupId>
<artifactId>connector-framework</artifactId>
<version>${connid.version}</version>
</dependency>
<dependency>
<groupId>net.tirasa.connid</groupId>
<artifactId>connector-framework-internal</artifactId>
<version>${connid.version}</version>
</dependency>
<!-- todo remove later, taken from mp project-->
<!-- <dependency>-->
<!-- <!– Resolves dependency conflict in selenium –>-->
<!-- <groupId>com.squareup.okio</groupId>-->
<!-- <artifactId>okio</artifactId>-->
<!-- <version>1.14.1</version>-->
<!-- </dependency>-->
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>${project.source.version}</source>
<target>${project.source.version}</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>