Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 5078829

Browse files
committed
Fix POM of UI tests.
1 parent 7915e6d commit 5078829

File tree

1 file changed

+23
-7
lines changed

1 file changed

+23
-7
lines changed

ui-tests/pom.xml

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,14 @@
1616
<name>UI Tests of Code Coverage Plugin</name>
1717

1818
<properties>
19-
<jenkins.version>2.396</jenkins.version>
19+
<jenkins.version>2.395</jenkins.version>
20+
<hpi-plugin.version>3.39</hpi-plugin.version>
2021
<json-smart.version>2.3</json-smart.version>
2122
<json-unit-assertj.version>2.36.1</json-unit-assertj.version>
2223
<module.name>${project.groupId}.code.coverage.api.ui.tests</module.name>
24+
25+
<!-- Maven Surefire ArgLine -->
26+
<argLine>-Djava.awt.headless=true -Xmx1024m -Djenkins.test.timeout=1000 --add-opens java.base/sun.reflect.annotation=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED</argLine>
2327
</properties>
2428

2529
<dependencyManagement>
@@ -36,7 +40,7 @@
3640
<dependency>
3741
<groupId>org.jenkins-ci</groupId>
3842
<artifactId>acceptance-test-harness</artifactId>
39-
<version>1.118</version>
43+
<version>5504.v485694f31cdf</version>
4044
</dependency>
4145
<dependency>
4246
<groupId>org.apache.httpcomponents</groupId>
@@ -134,6 +138,13 @@
134138
</profile>
135139
</profiles>
136140

141+
<pluginRepositories>
142+
<pluginRepository>
143+
<id>repo.jenkins-ci.org</id>
144+
<url>https://repo.jenkins-ci.org/public/</url>
145+
</pluginRepository>
146+
</pluginRepositories>
147+
137148
<build>
138149
<plugins>
139150
<plugin>
@@ -143,6 +154,13 @@
143154
<skip>true</skip>
144155
</configuration>
145156
</plugin>
157+
<plugin>
158+
<groupId>org.revapi</groupId>
159+
<artifactId>revapi-maven-plugin</artifactId>
160+
<configuration>
161+
<skip>true</skip>
162+
</configuration>
163+
</plugin>
146164
<plugin>
147165
<groupId>org.assertj</groupId>
148166
<artifactId>assertj-assertions-generator-maven-plugin</artifactId>
@@ -226,11 +244,9 @@
226244
</configuration>
227245
</plugin>
228246
<plugin>
229-
<groupId>org.revapi</groupId>
230-
<artifactId>revapi-maven-plugin</artifactId>
231-
<configuration>
232-
<skip>true</skip>
233-
</configuration>
247+
<groupId>org.jenkins-ci.tools</groupId>
248+
<artifactId>maven-hpi-plugin</artifactId>
249+
<version>${hpi-plugin.version}</version>
234250
</plugin>
235251
</plugins>
236252
</build>

0 commit comments

Comments
 (0)