Skip to content

Commit b832dad

Browse files
committed
bump versions use jdk11
1 parent 3b9b996 commit b832dad

File tree

17 files changed

+74
-43
lines changed

17 files changed

+74
-43
lines changed

.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.4.0</version>
6+
<version>0.4.3</version>
77
</extension>
88
</extensions>

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
**v1.3.0** Bump for janino-3.1.2, and jdk11
2+
13
**v1.2.0** Bump for janino-3.0.12, plus some refactoring
24

35
**v1.1.3** Bump for processing-3.3.4
46

57
**v1.1.2** Use sunflow.util.FloatList and IntList, netbeans profiling suggest it is worth doing (there is a vanilla processing alternative, with a different interface)
68

7-
**v1.1.1** Left out GLASS from fill type switch easily fixed thought
9+
**v1.1.1** Left out GLASS from fill type switch easily fixed though
810

9-
**v1.1.0** I'm conflicted about versioning here, this a later version than Joon Hyub Lee joonsrenderer. What is different is sunflow is integrated and updated (switch on String, try with resources etc, and importantly updated janino). I hava also hacked joons renderer a bit as well.
11+
**v1.1.0** I'm conflicted about versioning here, this a later version than Joon Hyub Lee joonsrenderer. What is different is sunflow is integrated and updated (switch on String, try with resources etc, and importantly updated janino). I have also hacked joons renderer a bit as well.

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def create_manifest
66
file = File.open('MANIFEST.MF', 'w') do |f|
77
f.puts(title)
88
f.puts(version)
9-
f.puts('Class-Path: janino-3.0.12.jar commons-compiler-3.0.12.jar')
9+
f.puts('Class-Path: janino-3.1.2.jar commons-compiler-3.1.2.jar')
1010
end
1111
end
1212

joonsrenderer.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Gem::Specification.new do |gem|
1414
gem.homepage = 'https://ruby-processing.github.io/joonsrenderer/'
1515
gem.files = `git ls-files`.split($/)
1616
gem.files << 'lib/joonsrenderer.jar'
17-
gem.files << 'lib/janino-3.0.12.jar'
18-
gem.files << 'lib/commons-compiler-3.0.12.jar'
17+
gem.files << 'lib/janino-3.1.2.jar'
18+
gem.files << 'lib/commons-compiler-3.1.2.jar'
1919
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
2020
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
2121
gem.require_paths = ['lib']
345 Bytes
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module commons.compiler {
2+
exports org.codehaus.commons.compiler;
3+
exports org.codehaus.commons.compiler.samples;
4+
exports org.codehaus.commons.compiler.util;
5+
exports org.codehaus.commons.nullanalysis;
6+
7+
}

lib/janino/module-info.class

213 Bytes
Binary file not shown.

lib/janino/module-info.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module janino{
2+
requires commons.compiler;
3+
exports org.codehaus.janino;
4+
5+
}

lib/joonsrenderer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module JoonsRenderer
2-
VERSION = '1.2.0'
2+
VERSION = '1.3.0'
33
end

pom.rb

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
project 'joonsrenderer' do
33

44
model_version '4.0.0'
5-
id 'joons:joonsrenderer:1.2.0'
5+
id 'joons:joonsrenderer:1.3.0'
66
packaging 'jar'
77
description 'joonsrenderer for propane and JRubyArt'
88
organization 'ruby-processing', 'https://ruby-processing.github.io'
@@ -21,7 +21,7 @@
2121
'maven.compiler.source' => '1.8',
2222
'project.build.sourceEncoding' => 'utf-8',
2323
'maven.compiler.target' => '1.8',
24-
'janino.version' => '3.0.12',
24+
'janino.version' => '3.1.2',
2525
'jogl.version' => '2.3.2',
2626
'processing.version' => '3.3.7'
2727
)
@@ -33,8 +33,8 @@
3333
jar('org.codehaus.janino:janino:${janino.version}')
3434

3535
overrides do
36-
plugin :resources, '2.6'
37-
plugin :dependency, '2.10' do
36+
plugin :resources, '3.1.0'
37+
plugin :dependency, '3.1.2' do
3838
execute_goals( id: 'default-cli',
3939
artifactItems:[
4040
{ groupId: 'org.codehaus.janino',
@@ -52,24 +52,24 @@
5252
]
5353
)
5454
end
55-
56-
plugin( :compiler, '3.8.0',
57-
source: '${maven.compiler.source}',
58-
target: '${maven.compiler.target}'
59-
)
60-
plugin( :javadoc, '2.10.4',
61-
detect_offline_links: 'false',
62-
)
63-
plugin( :jar, '3.0.2',
64-
'archive' => {
65-
'manifestFile' => 'MANIFEST.MF'
66-
}
67-
)
55+
plugin(:compiler, '3.8.1',
56+
'release' => '11')
57+
plugin(:javadoc, '2.10.4',
58+
'detectOfflineLinks' => 'false',
59+
'links' => ['${processing.api}',
60+
'${jruby.api}'])
61+
plugin(:jar, '3.2.0',
62+
'archive' => {
63+
'manifestFile' => 'MANIFEST.MF'
64+
})
65+
plugin :jdeps, '3.1.2' do
66+
execute_goals 'jdkinternals', 'test-jdkinternals'
67+
end
6868
end
6969

7070
build do
7171
default_goal 'package'
72-
source_directory 'src'
72+
source_directory '${source.directory}/main/java'
7373
final_name 'joonsrenderer'
7474
end
7575
end

0 commit comments

Comments
 (0)