Skip to content

Instantly share code, notes, and snippets.

@mkristian
Created December 22, 2015 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkristian/4ecd386273f6b8b5354c to your computer and use it in GitHub Desktop.
Save mkristian/4ecd386273f6b8b5354c to your computer and use it in GitHub Desktop.
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