Skip to content

Commit 55b3742

Browse files
committed
bum versions
1 parent 1a0ff5b commit 55b3742

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
source 'https://rubygems.org'
2-
ruby '2.5.3', :engine => 'jruby', :engine_version => '9.2.8.0'
2+
ruby '2.5.7', :engine => 'jruby', :engine_version => '9.2.9.0'
33
gemspec

docs/_posts/2018-05-06-install_jruby.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Get the latest version from [http://jruby.org/download][download]
1414

1515
```bash
1616
cd /opt
17-
sudo tar xzvf /pathToDownload/jruby-bin-9.2.8.0.tar.gz
17+
sudo tar xzvf /pathToDownload/jruby-bin-9.2.9.0.tar.gz
1818
```
1919

2020
Then use the excellent `update-alternatives` tool to provide symbolic links to `jruby`, `jgem`, `jirb` and `rake` especially if you haven't installed `mri` ruby.
@@ -44,9 +44,9 @@ mkdir installer
4444
cd installer
4545
rake
4646
```
47-
Currently installs jruby-9.2.8.0
47+
Currently installs jruby-9.2.9.0
4848

4949
If you know better please post on wiki
5050

51-
[download]:"https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.8.0/jruby-dist-9.2.8.0-bin.tar.gz"
51+
[download]:"https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.9.0/jruby-dist-9.2.9.0-bin.tar.gz"
5252
[rake_gist]:https://gist.github.com/monkstone/159c5a9813c9cd181040b4715e74f6b2

pom.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,24 @@
3131
'polyglot.dump.pom' => 'pom.xml'
3232
)
3333

34-
pom 'org.jruby:jruby:9.2.8.0'
34+
pom 'org.jruby:jruby:9.2.9.0'
3535
jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
3636
jar 'org.jogamp.gluegen:gluegen-rt-main:${jogl.version}'
3737
jar 'org.processing:video:3.0.2'
3838
end
3939

4040
overrides do
41-
plugin :resources, '2.7'
42-
plugin :dependency, '2.8'
41+
plugin :resources, '3.1.0'
42+
plugin :dependency, '3.1.1'
4343
plugin( :compiler, '3.8.1', 'release' => '8' )
4444
plugin(
4545
:javadoc,
46-
'2.10.4',
46+
'3.1.1',
4747
'detectOfflineLinks' => 'false',
4848
'links' => [ '${processing.api}', '${jruby.api}' ]
4949
)
5050
plugin(
51-
:jar, '3.1.0',
51+
:jar, '3.1.2',
5252
'archive' => {
5353
'manifestEntries' => { 'Class-Path' => 'gluegen-rt.jar jog-all.jar' }
5454
}

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>ruby-processing</groupId>
1313
<artifactId>picrate</artifactId>
14-
<version>1.2.1</version>
14+
<version>1.2.2</version>
1515
<name>picrate</name>
1616
<description>An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.</description>
1717
<url>http://maven.apache.org</url>
@@ -76,7 +76,7 @@ DO NOT MODIFIY - GENERATED CODE
7676
<dependency>
7777
<groupId>org.jruby</groupId>
7878
<artifactId>jruby</artifactId>
79-
<version>9.2.8.0</version>
79+
<version>9.2.9.0</version>
8080
<type>pom</type>
8181
</dependency>
8282
<dependency>
@@ -119,11 +119,11 @@ DO NOT MODIFIY - GENERATED CODE
119119
<plugins>
120120
<plugin>
121121
<artifactId>maven-resources-plugin</artifactId>
122-
<version>2.7</version>
122+
<version>3.1.0</version>
123123
</plugin>
124124
<plugin>
125125
<artifactId>maven-dependency-plugin</artifactId>
126-
<version>2.8</version>
126+
<version>3.1.1</version>
127127
</plugin>
128128
<plugin>
129129
<artifactId>maven-compiler-plugin</artifactId>
@@ -134,7 +134,7 @@ DO NOT MODIFIY - GENERATED CODE
134134
</plugin>
135135
<plugin>
136136
<artifactId>maven-javadoc-plugin</artifactId>
137-
<version>2.10.4</version>
137+
<version>3.1.1</version>
138138
<configuration>
139139
<detectOfflineLinks>false</detectOfflineLinks>
140140
<links>
@@ -145,7 +145,7 @@ DO NOT MODIFIY - GENERATED CODE
145145
</plugin>
146146
<plugin>
147147
<artifactId>maven-jar-plugin</artifactId>
148-
<version>3.1.0</version>
148+
<version>3.1.2</version>
149149
<configuration>
150150
<archive>
151151
<manifestEntries>

0 commit comments

Comments
 (0)