@@ -27,7 +27,7 @@ plugin( 'org.codehaus.mojo:exec-maven-plugin', '1.3.2' ) do
27
27
invoker_main << ' org.jruby.anno.InvokerGenerator'
28
28
invoker_main << " #{gen_sources}/annotated_classes.txt ${project.build.outputDirectory}"
29
29
30
- dependency 'org.jruby', 'jruby-core', '1.7.10 '
30
+ dependency 'org.jruby', 'jruby-core', '1.7.17 '
31
31
32
32
execute_goal :java, :id => 'invoker-generator', :phase => 'process-classes',
33
33
:mainClass => 'org.jruby.anno.InvokerGenerator', :classpathScope => 'compile',
78
78
79
79
# NOTE: unfortunately we can not use 1.6.8 to generate invokers ...
80
80
# although we'd like to compile against 1.6 to make sure all is well
81
- jar 'org.jruby:jruby-core' , '1.7.16 ' , :scope => :provided # 1.6.8
81
+ jar 'org.jruby:jruby-core' , '1.7.17 ' , :scope => :provided # 1.6.8
82
82
jar 'junit:junit' , '4.11' , :scope => :test
83
83
84
84
jruby_plugin! :gem do
90
90
91
91
supported_bc_versions = [ '1.47' , '1.48' , '1.49' , '1.50' ]
92
92
93
- properties ( 'jruby.plugins.version' => '1.0.5 ' ,
94
- 'jruby.versions' => '1.7.13 ' ,
93
+ properties ( 'jruby.plugins.version' => '1.0.6 ' ,
94
+ 'jruby.versions' => '1.7.17 ' ,
95
95
'bc.versions' => supported_bc_versions . last ,
96
96
'invoker.test' => '${bc.versions}' ,
97
97
# allow to skip all tests with -Dmaven.test.skip
98
98
'invoker.skip' => '${maven.test.skip}' ,
99
99
'runit.dir' => 'src/test/ruby/**/test_*.rb' ,
100
100
# use this version of jruby for ALL the jruby-maven-plugins
101
- 'jruby.version' => '1.7.13 ' ,
101
+ 'jruby.version' => '1.7.17 ' ,
102
102
# dump pom.xml as readonly when running 'rmvn'
103
103
'tesla.dump.pom' => 'pom.xml' ,
104
104
'tesla.dump.readonly' => true )
@@ -160,7 +160,15 @@ profile :id => 'test-1.7.16' do
160
160
plugin :invoker , '1.8' do
161
161
execute_goals ( :install , :run , invoker_run_options )
162
162
end
163
- properties 'jruby.versions' => '1.7.16' , 'jruby.modes' => '1.8,1.9,2.0' ,
163
+ properties 'jruby.versions' => '1.7.16.2' , 'jruby.modes' => '1.8,1.9,2.0' ,
164
+ 'bc.versions' => supported_bc_versions . join ( ',' )
165
+ end
166
+
167
+ profile :id => 'test-1.7.17' do
168
+ plugin :invoker , '1.8' do
169
+ execute_goals ( :install , :run , invoker_run_options )
170
+ end
171
+ properties 'jruby.versions' => '1.7.17' , 'jruby.modes' => '1.8,1.9,2.0' ,
164
172
'bc.versions' => supported_bc_versions . join ( ',' )
165
173
end
166
174
0 commit comments