Skip to content

Commit b974765

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/mavengems#9
1 parent df8cb6d commit b974765

File tree

27 files changed

+35
-41
lines changed

27 files changed

+35
-41
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
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

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: 1 addition & 1 deletion
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

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>

0 commit comments

Comments
 (0)