Skip to content

Commit 34c1761

Browse files
committed
Bump versions clean up; built for jdk11+
1 parent 5fa4090 commit 34c1761

File tree

13 files changed

+460
-436
lines changed

13 files changed

+460
-436
lines changed

.mvn/extensions.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<extension>
44
<groupId>io.takari.polyglot</groupId>
55
<artifactId>polyglot-ruby</artifactId>
6-
<version>0.4.3</version>
6+
<version>0.4.6</version>
77
</extension>
88
</extensions>
9-

.mvn/wrapper/maven-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.1/apache-maven-3.6.1-bin.zip
2-
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar
2+
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar

arcball.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Gem::Specification.new do |s|
77
s.version = ArcBall::VERSION
88
s.licenses = ['GPL-3.0']
99
s.authors = ['Martin Prout']
10-
s.date = %q{2020-04-09}
10+
s.date = %q{2021-04-11}
1111
s.description = %q{A ArcBall in java for propane and PiCrate}
1212
s.summary = %q{Provides arcball functionality to processing, from a ruby environment}
1313
s.email = %q{[email protected]}
1414
s.files = ['Rakefile', 'lib/arcball.rb', 'lib/arcball.jar', 'lib/arcball/version.rb']
1515
s.homepage = %q{http://rubygems.org/gems/arcball}
1616
s.require_paths = ['lib']
17-
s.add_development_dependency 'rake', '~> 12.3'
17+
s.add_development_dependency 'rake', '~> 13'
1818
s.platform = 'java'
19-
s.requirements << 'java runtime == 8'
19+
s.requirements << 'java runtime >= 11'
2020
end

lib/arcball/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module ArcBall
3-
VERSION = '1.0.2'.freeze
3+
VERSION = '1.1.0'.freeze
44
end

pom.rb

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
project 'arcball', 'https://github.com/ruby-processing/ArcBall' do
66
model_version '4.0.0'
7-
id 'arcball:arcball', '1.0.2'
7+
id 'arcball:arcball', '1.1.0'
88
packaging 'jar'
99
description 'arcball for arcball'
1010
organization 'ruby-processing', 'https://ruby-processing.github.io'
@@ -26,20 +26,17 @@
2626
properties('source.directory' => 'src',
2727
'arcball.basedir' => '${project.basedir}',
2828
'polyglot.dump.pom' => 'pom.xml',
29-
'maven.compiler.source' => '1.8',
3029
'project.build.sourceEncoding' => 'utf-8',
31-
'maven.compiler.target' => '1.8',
3230
'jruby.api' => 'http://jruby.org/apidocs/',
3331
'processing.api' => 'http://processing.github.io/processing-javadocs/core/')
3432

35-
pom('org.jruby:jruby:9.2.11.1')
33+
pom('org.jruby:jruby:9.2.17.0')
3634
jar('org.processing:core:3.3.7')
3735

3836
overrides do
3937
plugin :dependency, '3.1.2'
4038
plugin(:compiler, '3.8.1',
41-
source: '${maven.compiler.source}',
42-
target: '${maven.compiler.target}')
39+
'release' => '11')
4340
plugin(:javadoc, '2.10.4',
4441
'detectOfflineLinks' => 'false',
4542
'links' => ['${processing.api}',

pom.xml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
44
5-
DO NOT MODIFIY - GENERATED CODE
5+
DO NOT MODIFY - GENERATED CODE
66
77
88
-->
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
1111
<modelVersion>4.0.0</modelVersion>
1212
<groupId>arcball</groupId>
1313
<artifactId>arcball</artifactId>
14-
<version>1.0.2</version>
14+
<version>1.1.0</version>
1515
<name>arcball</name>
1616
<description>arcball for arcball</description>
1717
<url>https://github.com/ruby-processing/ArcBall</url>
@@ -40,8 +40,6 @@ DO NOT MODIFIY - GENERATED CODE
4040
<properties>
4141
<arcball.basedir>${project.basedir}</arcball.basedir>
4242
<jruby.api>http://jruby.org/apidocs/</jruby.api>
43-
<maven.compiler.source>1.8</maven.compiler.source>
44-
<maven.compiler.target>1.8</maven.compiler.target>
4543
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
4644
<processing.api>http://processing.github.io/processing-javadocs/core/</processing.api>
4745
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
@@ -51,7 +49,7 @@ DO NOT MODIFIY - GENERATED CODE
5149
<dependency>
5250
<groupId>org.jruby</groupId>
5351
<artifactId>jruby</artifactId>
54-
<version>9.2.11.1</version>
52+
<version>9.2.17.0</version>
5553
<type>pom</type>
5654
</dependency>
5755
<dependency>
@@ -74,8 +72,7 @@ DO NOT MODIFIY - GENERATED CODE
7472
<artifactId>maven-compiler-plugin</artifactId>
7573
<version>3.8.1</version>
7674
<configuration>
77-
<source>${maven.compiler.source}</source>
78-
<target>${maven.compiler.target}</target>
75+
<release>11</release>
7976
</configuration>
8077
</plugin>
8178
<plugin>

0 commit comments

Comments
 (0)