Skip to content

Commit b7d600a

Browse files
committed
Update jruby-maven-plugins to new group and version
This update is necessary to get JRuby 9.4.3.0 running throughout the JRuby/Maven stack, which is necessary to move to the new mavengems. See jruby/jruby-maven-plugins#126 See jruby/mavengem#9 There are also changes to replace the use of `jruby_plugin` in several poms with a normal `plugin` DSL call, due to the former hardcoding an old package for the jruby-maven-plugins. See jruby/maven-tools#37
1 parent ec81902 commit b7d600a

File tree

30 files changed

+51
-58
lines changed

30 files changed

+51
-58
lines changed

lib/pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def log(message=nil)
154154

155155
properties( 'polyglot.dump.pom' => 'pom.xml',
156156
'polyglot.dump.readonly' => true,
157-
'jruby.plugins.version' => '1.1.2',
157+
'jruby.plugins.version' => '3.0.0-SNAPSHOT',
158158
'gem.home' => '${basedir}/ruby/gems/shared',
159159
# we copy everything into the target/classes/META-INF
160160
# so the jar plugin just packs it - see build/resources below

lib/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ DO NOT MODIFY - GENERATED CODE
2020
<gem.home>${basedir}/ruby/gems/shared</gem.home>
2121
<jruby.complete.gems>${jruby.complete.home}/lib/ruby/gems/shared</jruby.complete.gems>
2222
<jruby.complete.home>${project.build.outputDirectory}/META-INF/jruby.home</jruby.complete.home>
23-
<jruby.plugins.version>1.1.2</jruby.plugins.version>
23+
<jruby.plugins.version>3.0.0-SNAPSHOT</jruby.plugins.version>
2424
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
2525
<polyglot.dump.readonly>true</polyglot.dump.readonly>
2626
</properties>

lifecycle-mapping-metadata.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
</pluginExecution>
3030
<pluginExecution>
3131
<pluginExecutionFilter>
32-
<groupId>de.saumya.mojo</groupId>
32+
<groupId>org.jruby.maven</groupId>
3333
<artifactId>gem-maven-plugin</artifactId>
34-
<versionRange>1.0.0-rc</versionRange>
34+
<versionRange>3.0.0-SNAPSHOT</versionRange>
3535
<goals>
3636
<goal>initialize</goal>
3737
</goals>
@@ -42,9 +42,9 @@
4242
</pluginExecution>
4343
<pluginExecution>
4444
<pluginExecutionFilter>
45-
<groupId>de.saumya.mojo</groupId>
45+
<groupId>org.jruby.maven</groupId>
4646
<artifactId>gem-maven-plugin</artifactId>
47-
<versionRange>1.0.0-rc2</versionRange>
47+
<versionRange>3.0.0-SNAPSHOT</versionRange>
4848
<goals>
4949
<goal>initialize</goal>
5050
</goals>

maven/jruby-complete/src/it/GH-3095-gem-install-with-forked-jruby/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<extension>
3232
<groupId>org.jruby.maven</groupId>
3333
<artifactId>mavengem-wagon</artifactId>
34-
<version>1.0.3</version>
34+
<version>2.0.0-SNAPSHOT</version>
3535
</extension>
3636
</extensions>
3737
<plugins>

maven/jruby-complete/src/it/extended/Mavenfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#-*- mode: ruby -*-
22

33
# default versions will be overwritten by pom.rb from root directory
4-
properties( 'jruby.plugins.version' => '1.0.10',
4+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
55
'project.build.sourceEncoding' => 'utf-8',
66
'jruby.home' => '${basedir}/../../../../..' )
77

maven/jruby-complete/src/it/runnable/Mavenfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#-*- mode: ruby -*-
22

33
# default versions will be overwritten by pom.rb from root directory
4-
properties( 'jruby.plugins.version' => '1.0.10',
5-
'mavengem.wagon.version' => '1.0.3',
6-
'jruby.version' => '9.0.5.0' )
4+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
5+
'mavengem.wagon.version' => '2.0.0-SNAPSHOT',
6+
'jruby.version' => '9.4.3.0' )
77

88
gemfile
99

maven/jruby-complete/src/templates/osgi_many_bundles_with_embedded_gems/gems-bundle/pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
packaging 'bundle'
1313

1414
# default versions will be overwritten by pom.rb from root directory
15-
properties( 'jruby.plugins.version' => '1.0.10',
15+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
1616
# needed bundle plugin
1717
'polyglot.dump.pom' => 'pom.xml' )
1818

19-
jruby_plugin! :gem, :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0'
19+
plugin! 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0'
2020

2121
plugin( 'org.apache.felix:maven-bundle-plugin', '2.4.0',
2222
:instructions => {

maven/jruby-complete/src/templates/osgi_many_bundles_with_embedded_gems/pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
packaging :pom
66

77
# default versions will be overwritten by pom.rb from root directory
8-
properties( 'jruby.plugins.version' => '1.0.10',
8+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
99
'project.build.sourceEncoding' => 'utf-8' )
1010

1111
modules [ 'gems-bundle', 'scripts-bundle', 'test' ]

maven/jruby-jars/Mavenfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ end
2828

2929
properties( 'tesla.dump.pom' => 'pom.xml',
3030
'tesla.dump.readonly' => true,
31-
'jruby.plugins.version' => '1.1.8',
31+
'jruby.plugins.version' => '3.0.0-SNAPSHOT',
3232
# we share the already installed gems
3333
'gem.home' => '${jruby_home}/lib/ruby/gems/shared',
3434
# need jruby_home but not jruby.home as name otherwise
@@ -51,7 +51,7 @@ end
5151
# do not push the gem during deploy phase
5252
# the bang reuses the plugin declaration which is already in place and
5353
# adds the extra execute_goal to it
54-
jruby_plugin!( :gem,
54+
plugin!('org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}',
5555
:gemspec => 'jruby-jars.gemspec',
5656
# tell maven to include the jar files into gem
5757
:includeDependencies => true,

maven/jruby-jars/src/it/integrity/pom.xml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,14 @@
1616
<build>
1717
<plugins>
1818
<plugin>
19-
<groupId>de.saumya.mojo</groupId>
19+
<groupId>org.jruby.maven</groupId>
2020
<artifactId>gem-maven-plugin</artifactId>
21-
<version>1.0.5</version>
21+
<version>3.0.0-SNAPSHOT</version>
2222
<executions>
2323
<execution>
2424
<goals><goal>initialize</goal></goals>
2525
</execution>
2626
</executions>
27-
<configuration>
28-
<jrubyVersion>1.7.22</jrubyVersion>
29-
</configuration>
3027
</plugin>
3128
<plugin>
3229
<groupId>org.codehaus.mojo</groupId>

maven/jruby/src/it/j2ee_jetty/pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
packaging 'war'
33

44
# default versions will be overwritten by pom.rb from root directory
5-
properties( 'jruby.plugins.version' => '1.0.10',
5+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
66
'project.build.sourceEncoding' => 'utf-8' )
77

88
pom( 'org.jruby:jruby', '${jruby.version}' )
@@ -13,7 +13,7 @@
1313
extension 'org.jruby.maven:mavengem-wagon:2.0.0-SNAPSHOT'
1414
repository :id => :mavengems, :url => 'mavengem:https://rubygems.org'
1515

16-
jruby_plugin :gem, :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0' do
16+
plugin 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0' do
1717
execute_goal :initialize
1818
end
1919

maven/jruby/src/it/j2ee_jetty_rack/Mavenfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
packaging 'war'
55

66
# get jruby dependencies
7-
properties( 'jruby.plugins.version' => '1.0.10',
7+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
88
'project.build.sourceEncoding' => 'utf-8',
99
'public.dir' => '${basedir}/public' )
1010

@@ -19,7 +19,7 @@ gem 'flickraw', '0.9.7'
1919
extension 'org.jruby.maven:mavengem-wagon:2.0.0-SNAPSHOT'
2020
repository :id => :mavengems, :url => 'mavengem:https://rubygems.org'
2121

22-
jruby_plugin :gem, :includeRubygemsInResources => true, :includeLibDirectoryInResources => true, :jrubyVersion => '9.0.0.0' do
22+
plugin 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInResources => true, :includeLibDirectoryInResources => true, :jrubyVersion => '9.0.0.0' do
2323
execute_goal :initialize
2424
end
2525

maven/jruby/src/it/j2ee_tomcat/pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
packaging 'war'
33

44
# default versions will be overwritten by pom.rb from root directory
5-
properties( 'jruby.plugins.version' => '1.0.10',
5+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
66
'project.build.sourceEncoding' => 'utf-8' )
77

88
pom( 'org.jruby:jruby', '${jruby.version}' )
@@ -13,7 +13,7 @@
1313
extension 'org.jruby.maven:mavengem-wagon:2.0.0-SNAPSHOT'
1414
repository :id => :mavengems, :url => 'mavengem:https://rubygems.org'
1515

16-
jruby_plugin :gem, :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0' do
16+
plugin 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0' do
1717
execute_goal :initialize
1818
end
1919

maven/jruby/src/it/j2ee_tomcat_rack/Mavenfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
packaging 'war'
55

66
# get jruby dependencies
7-
properties( 'jruby.plugins.version' => '1.0.10',
7+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
88
'project.build.sourceEncoding' => 'utf-8',
99
'public.dir' => '${basedir}/public' )
1010

@@ -19,7 +19,7 @@ gem 'flickraw', '0.9.7'
1919
extension 'org.jruby.maven:mavengem-wagon:2.0.0-SNAPSHOT'
2020
repository :id => :mavengems, :url => 'mavengem:https://rubygems.org'
2121

22-
jruby_plugin :gem, :includeRubygemsInResources => true, :includeLibDirectoryInResources => true, :jrubyVersion => '9.0.0.0' do
22+
plugin 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInResources => true, :includeLibDirectoryInResources => true, :jrubyVersion => '9.0.0.0' do
2323
execute_goal :initialize
2424
end
2525

maven/jruby/src/it/j2ee_wildfly/pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
packaging 'war'
33

44
# default versions will be overwritten by pom.rb from root directory
5-
properties( 'jruby.plugins.version' => '1.0.10',
5+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
66
'wildfly.version' => '9.0.2.Final',
77
'project.build.sourceEncoding' => 'utf-8' )
88

@@ -14,7 +14,7 @@
1414
extension 'org.jruby.maven:mavengem-wagon:2.0.0-SNAPSHOT'
1515
repository :id => :mavengems, :url => 'mavengem:https://rubygems.org'
1616

17-
jruby_plugin :gem, :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0' do
17+
plugin 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0' do
1818
execute_goal :initialize
1919
end
2020

maven/jruby/src/it/jetty/Mavenfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
packaging 'war'
55

66
# default versions will be overwritten by pom.rb from root directory
7-
properties( 'jruby.plugins.version' => '1.0.10',
7+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
88
'project.build.sourceEncoding' => 'utf-8',
99
'public.dir' => '${basedir}/public' )
1010

@@ -19,7 +19,7 @@ gem 'flickraw', '0.9.7'
1919
extension 'org.jruby.maven:mavengem-wagon:2.0.0-SNAPSHOT'
2020
repository :id => :mavengems, :url => 'mavengem:https://rubygems.org'
2121

22-
jruby_plugin :gem, :includeRubygemsInTestResources => false, :includeRubygemsInResources => true, :includeLibDirectoryInResources => true, :jrubyVersion => '9.0.0.0' do
22+
plugin 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInTestResources => false, :includeRubygemsInResources => true, :includeLibDirectoryInResources => true, :jrubyVersion => '9.0.0.0' do
2323
execute_goal :initialize
2424
end
2525

maven/jruby/src/it/many_jars_with_embedded_gems/app/pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# two jars with embedded gems
2-
jar 'de.saumya.mojo:maven-tools', '1.0.0.rc1'
2+
jar 'org.jruby.maven:maven-tools', '3.0.0-SNAPSHOT'
33
jar 'org.rubygems:zip', '2.0.2'
44

55
# jruby scripting container

maven/jruby/src/it/many_jars_with_embedded_gems/pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#-*- mode: ruby -*-
22

33
# default versions will be overwritten by pom.rb from root directory
4-
properties( 'jruby.plugins.version' => '1.0.10' )
4+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT' )
55

66
packaging :pom
77

maven/jruby/src/it/many_jars_with_embedded_gems/zip_gem/pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99

1010
id 'org.rubygems:zip', VERSION
1111

12-
jruby_plugin! :gem, :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0'
12+
plugin! 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0'

maven/jruby/src/it/many_jars_with_embedded_gems_ng/gem1/pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99

1010
id 'org.rubygems:gem1', '1'
1111

12-
jruby_plugin! :gem, :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0'
12+
plugin! 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0'

maven/jruby/src/it/many_jars_with_embedded_gems_ng/gem2/pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99

1010
id 'org.rubygems:gem2', '2'
1111

12-
jruby_plugin! :gem, :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0'
12+
plugin! 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0'

maven/jruby/src/it/many_jars_with_embedded_gems_ng/pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#-*- mode: ruby -*-
22

33
# default versions will be overwritten by pom.rb from root directory
4-
properties( 'jruby.plugins.version' => '1.0.10' )
4+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT' )
55

66
packaging :pom
77

maven/jruby/src/it/terminate-container-and-extensions-GH-3300/pom.xml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</repositories>
3434

3535
<properties>
36-
<jruby.plugins.version>1.0.10</jruby.plugins.version>
36+
<jruby.plugins.version>>3.0.0-SNAPSHOT</jruby.plugins.version>
3737
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3838
</properties>
3939

@@ -42,22 +42,19 @@
4242
<extension>
4343
<groupId>org.jruby.maven</groupId>
4444
<artifactId>mavengem-wagon</artifactId>
45-
<version>1.0.3</version>
45+
<version>2.0.0-SNAPSHOT</version>
4646
</extension>
4747
</extensions>
4848
<plugins>
4949
<plugin>
50-
<groupId>de.saumya.mojo</groupId>
50+
<groupId>org.jruby.maven</groupId>
5151
<artifactId>gem-maven-plugin</artifactId>
5252
<version>${jruby.plugins.version}</version>
5353
<executions>
5454
<execution>
5555
<goals><goal>initialize</goal></goals>
5656
</execution>
5757
</executions>
58-
<configuration>
59-
<jrubyVersion>1.7.22</jrubyVersion>
60-
</configuration>
6158
</plugin>
6259
</plugins>
6360
</build>

maven/jruby/src/it/tomcat/pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
packaging 'war'
55

66
# default versions will be overwritten by pom.rb from root directory
7-
properties( 'jruby.plugins.version' => '1.0.10',
7+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
88
'project.build.sourceEncoding' => 'utf-8' )
99

1010
pom( 'org.jruby:jruby', '${jruby.version}' )
@@ -15,7 +15,7 @@
1515
extension 'org.jruby.maven:mavengem-wagon:2.0.0-SNAPSHOT'
1616
repository :id => :mavengems, :url => 'mavengem:https://rubygems.org'
1717

18-
jruby_plugin :gem, :includeRubygemsInTestResources => false, :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0' do
18+
plugin 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInTestResources => false, :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0' do
1919
execute_goal :initialize
2020
end
2121

maven/jruby/src/templates/hellowarld/Mavenfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ name '${cmd} ${framework} from ${package}'
1010
packaging 'pom'
1111

1212
# TODO add extension to .mvn/extensions.xml
13-
extension 'de.saumya.mojo', 'jruby9-extensions', '${jruby9.plugins.version}'
13+
extension 'org.jruby.maven', 'jruby9-extensions', '${jruby9.plugins.version}'
1414

15-
properties( 'jruby.plugins.version' => '1.1.0',
15+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
1616
'jruby9.plugins.version' => '0.2.0' )
1717

1818
# integration tests

maven/jruby/src/templates/j2ee_wlp/pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
packaging 'war'
33

44
# default versions will be overwritten by pom.rb from root directory
5-
properties( 'jruby.plugins.version' => '1.0.10',
5+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
66
'project.build.sourceEncoding' => 'utf-8' )
77

88
pom( 'org.jruby:jruby', '${jruby.version}' )
@@ -13,7 +13,7 @@
1313
extension 'org.jruby.maven:mavengem-wagon:2.0.0-SNAPSHOT'
1414
repository :id => :mavengems, :url => 'mavengem:https://rubygems.org'
1515

16-
jruby_plugin :gem, :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0' do
16+
plugin 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0' do
1717
execute_goal :initialize
1818
end
1919

maven/jruby/src/templates/osgi_all_inclusive/pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
packaging 'bundle'
44

55
# default versions will be overwritten by pom.rb from root directory
6-
properties( 'jruby.plugins.version' => '1.0.10',
6+
properties( 'jruby.plugins.version' => '3.0.0-SNAPSHOT',
77
'exam.version' => '3.0.3',
88
'url.version' => '1.5.2',
99
'logback.version' => '1.0.13',
@@ -17,7 +17,7 @@
1717
extension 'org.jruby.maven:mavengem-wagon:2.0.0-SNAPSHOT'
1818
repository :id => :mavengems, :url => 'mavengem:https://rubygems.org'
1919

20-
jruby_plugin! :gem, :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0'
20+
plugin! 'org.jruby.maven:gem-maven-plugin:${jruby.plugins.version}', :includeRubygemsInResources => true, :jrubyVersion => '9.0.0.0'
2121

2222
# add some ruby scripts to bundle
2323
resource :directory => 'src/main/ruby'

pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
'github.global.server' => 'github',
6464
'polyglot.dump.pom' => 'pom.xml',
6565
'polyglot.dump.readonly' => 'true',
66-
'jruby.plugins.version' => '1.0.10',
66+
'jruby.plugins.version' => '3.0.0-SNAPSHOT',
6767

6868
# versions for default gems with bin executables
6969
# used in ./lib/pom.rb and ./maven/jruby-stdlib/pom.rb

0 commit comments

Comments
 (0)