Created
December 22, 2015 13:07
-
-
Save mkristian/4ecd386273f6b8b5354c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/test/pom.rb b/test/pom.rb | |
index 362d1f3..7438482 100644 | |
--- a/test/pom.rb | |
+++ b/test/pom.rb | |
@@ -102,7 +102,6 @@ project 'JRuby Integration Tests' do | |
'encoding' => 'utf-8', | |
'debug' => 'true', | |
'verbose' => 'true', | |
- 'fork' => 'true', | |
'showWarnings' => 'true', | |
'showDeprecation' => 'true', | |
'source' => '${base.java.version}', | |
@@ -134,11 +133,9 @@ project 'JRuby Integration Tests' do | |
'destFileName' => 'bsf.jar' } ] ) | |
end | |
- plugin( :deploy, | |
- 'skip' => 'true' ) | |
- plugin( :site, | |
- 'skip' => 'true', | |
- 'skipDeploy' => 'true' ) | |
+ plugin :deploy, :skip => true | |
+ plugin :site, :skip => true, :skipDeploy => true | |
+ plugin :surefire, :skip => true | |
build do | |
default_goal 'test' | |
@@ -303,6 +300,7 @@ project 'JRuby Integration Tests' do | |
profile 'truffle-test-pe' do | |
+ plugin :surefire, :skip => false | |
plugin :antrun do | |
execute_goals( 'run', | |
:id => 'rake', |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment