We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45df71f commit 36a6395Copy full SHA for 36a6395
Dockerfile.builder
@@ -12,4 +12,4 @@ ADD src ${OTP_ROOT}/src
12
add .git ${OTP_ROOT}/.git
13
14
# Build OTP
15
-RUN mvn package -DskipTests
+RUN mvn package
pom.xml
@@ -257,8 +257,9 @@
257
<plugin>
258
<groupId>org.apache.maven.plugins</groupId>
259
<artifactId>maven-surefire-plugin</artifactId>
260
- <version>2.21.0</version>
261
- <configuration>
+ <!-- Fixes issue with tests failing in some environments. Replace this when proper version of 3.0 is released. -->
+ <version>3.0.0-M1</version>
262
+ <configuration>
263
<argLine>-Xmx4G</argLine>
264
<!-- Jenkins needs XML test reports to determine whether the build is stable. -->
265
<disableXmlReport>false</disableXmlReport>
0 commit comments