mirror of https://github.com/rusefi/jzy3d-api.git
Improve MAVEN build Performance
This commit is contained in:
parent
950384320d
commit
0f67bdfc03
|
@ -5,4 +5,4 @@ jdk:
|
|||
#- oraclejdk7
|
||||
#- openjdk6
|
||||
before_install: openssl aes-256-cbc -K $encrypted_7d767fcac9aa_key -iv $encrypted_7d767fcac9aa_iv -in settings-obf.xml.enc -out settings-obf.xml -d
|
||||
after_success: mvn deploy --settings settings-obf.xml
|
||||
after_success: mvn -T 1C deploy --settings settings-obf.xml
|
||||
|
|
8
pom.xml
8
pom.xml
|
@ -347,6 +347,11 @@
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>3.0.0-M5</version>
|
||||
<configuration>
|
||||
<parallel>classes</parallel>
|
||||
<useUnlimitedThreads>true</useUnlimitedThreads>
|
||||
</configuration>
|
||||
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
|
@ -563,6 +568,9 @@
|
|||
<include>**/*Test.java</include>
|
||||
<include>**/ITTest*.java</include>
|
||||
</includes>
|
||||
<parallel>classes</parallel>
|
||||
<useUnlimitedThreads>true</useUnlimitedThreads>
|
||||
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
|
|
Loading…
Reference in New Issue