Skip to content

Commit 962fe02

Browse files
authored
Merge pull request #9 from monkstone/master
Version numbers getting a bit stale
2 parents c4187f8 + 1467696 commit 962fe02

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

extensions/basic/jruby-ext/.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<extension>
44
<groupId>io.takari.polyglot</groupId>
55
<artifactId>polyglot-ruby</artifactId>
6-
<version>0.1.15</version>
6+
<version>0.1.19</version>
77
</extension>
88
</extensions>

extensions/basic/jruby-ext/pom.rb

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
project 'jruby-ext' do
22

33
model_version '4.0.0'
4-
id 'com.purbon:jruby-ext:1.0'
4+
id 'com.purbon:jruby-ext:1.1'
55
packaging 'jar'
6-
6+
77
description 'example JRuby extension'
8-
8+
99
developer 'purbon' do
1010
name 'Pere Urbón'
1111
email 'pere.urbon@gmail.com'
1212
roles 'developer'
1313
end
14-
14+
1515
issue_management 'https://github.com/jruby/jruby-examples/issues', 'Github'
16-
16+
1717
source_control(
1818
url: 'https://github.com/jruby/jruby-examples',
1919
connection: 'scm:git:git://github.com/jruby/jruby-examples.git',
2020
developer_connection: 'git@github.com:jruby/jruby-examples.git'
2121
)
22-
22+
2323
properties(
2424
'maven.compiler.source' => '1.7',
2525
'maven.compiler.target' => '1.7',
@@ -29,29 +29,29 @@
2929
'jruby.api' => 'http://jruby.org/apidocs/',
3030
)
3131

32-
jar 'org.jruby:jruby:9.0.5.0'
33-
32+
jar 'org.jruby:jruby:9.1.5.0'
33+
3434
plugin_management do
3535
plugin :resources, '2.6'
3636
plugin :dependency, '2.8'
3737
plugin(
38-
:compiler, '3.3',
38+
:compiler, '3.5.1',
3939
source: '${maven.compiler.source}',
4040
target: '${maven.compiler.target}'
4141
)
4242
plugin(
43-
:javadoc, '2.10.3',
43+
:javadoc, '2.10.4',
4444
detect_offline_links: 'false',
4545
links: ['${jruby.api}']
4646
)
4747
plugin(
48-
:jar, '2.6',
48+
:jar, '3.0.2',
4949
archive: {
5050
manifestFile: 'MANIFEST.MF' # camel case reqd
51-
}
51+
}
5252
)
5353
end
54-
54+
5555
build do
5656
default_goal 'package'
5757
source_directory '${source.directory}'

extensions/basic/jruby-ext/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
1111
<modelVersion>4.0.0</modelVersion>
1212
<groupId>com.purbon</groupId>
1313
<artifactId>jruby-ext</artifactId>
14-
<version>1.0</version>
14+
<version>1.1</version>
1515
<name>jruby-ext</name>
1616
<description>example JRuby extension</description>
1717
<developers>
@@ -45,7 +45,7 @@ DO NOT MODIFIY - GENERATED CODE
4545
<dependency>
4646
<groupId>org.jruby</groupId>
4747
<artifactId>jruby</artifactId>
48-
<version>9.0.5.0</version>
48+
<version>9.1.5.0</version>
4949
</dependency>
5050
</dependencies>
5151
<build>
@@ -64,25 +64,25 @@ DO NOT MODIFIY - GENERATED CODE
6464
</plugin>
6565
<plugin>
6666
<artifactId>maven-compiler-plugin</artifactId>
67-
<version>3.3</version>
67+
<version>3.5.1</version>
6868
<configuration>
6969
<source>${maven.compiler.source}</source>
7070
<target>${maven.compiler.target}</target>
7171
</configuration>
7272
</plugin>
7373
<plugin>
7474
<artifactId>maven-javadoc-plugin</artifactId>
75-
<version>2.10.3</version>
75+
<version>2.10.4</version>
7676
<configuration>
77-
<detect_offline_links>false</detect_offline_links>
77+
<detectOfflineLinks>false</detectOfflineLinks>
7878
<links>
7979
<link>${jruby.api}</link>
8080
</links>
8181
</configuration>
8282
</plugin>
8383
<plugin>
8484
<artifactId>maven-jar-plugin</artifactId>
85-
<version>2.6</version>
85+
<version>3.0.2</version>
8686
<configuration>
8787
<archive>
8888
<manifestFile>MANIFEST.MF</manifestFile>

0 commit comments

Comments
 (0)