Skip to content

Commit

Permalink
update janino
Browse files Browse the repository at this point in the history
  • Loading branch information
monkstone committed Jan 31, 2021
1 parent 92563ac commit 41f9288
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
**v1.3.1** Bump for janino-3.1.3 and processing-4.0

**v1.3.0** Bump for janino-3.1.2, and jdk11

**v1.2.0** Bump for janino-3.0.12, plus some refactoring
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def create_manifest
file = File.open('MANIFEST.MF', 'w') do |f|
f.puts(title)
f.puts(version)
f.puts('Class-Path: janino-3.1.2.jar commons-compiler-3.1.2.jar')
f.puts('Class-Path: janino-3.1.3.jar commons-compiler-3.1.3.jar')
end
end

Expand Down
4 changes: 2 additions & 2 deletions joonsrenderer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Gem::Specification.new do |gem|
gem.homepage = 'https://ruby-processing.github.io/joonsrenderer/'
gem.files = `git ls-files`.split($/)
gem.files << 'lib/joonsrenderer.jar'
gem.files << 'lib/janino-3.1.2.jar'
gem.files << 'lib/commons-compiler-3.1.2.jar'
gem.files << 'lib/janino-3.1.3.jar'
gem.files << 'lib/commons-compiler-3.1.3.jar'
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
Expand Down
2 changes: 1 addition & 1 deletion lib/joonsrenderer/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module JoonsRenderer
VERSION = '1.3.0'
VERSION = '1.3.1'
end
12 changes: 7 additions & 5 deletions pom.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'joonsrenderer.basedir' => '${project.basedir}',
'polyglot.dump.pom' => 'pom.xml',
'project.build.sourceEncoding' => 'utf-8',
'janino.version' => '3.1.2',
'janino.version' => '3.1.3',
'jogl.version' => '2.3.2',
'processing.version' => '3.3.7'
)
Expand Down Expand Up @@ -56,10 +56,12 @@
'detectOfflineLinks' => 'false',
'links' => ['${processing.api}',
'${jruby.api}'])
plugin(:jar, '3.2.0',
'archive' => {
'manifestFile' => 'MANIFEST.MF'
})
plugin(:jar, '3.2.0',
'archive' => {
'manifestEntries' => {
'Automatic-Module-Name' => 'joonsrenderer'
}
})
plugin :jdeps, '3.1.2' do
execute_goals 'jdkinternals', 'test-jdkinternals'
end
Expand Down
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ DO NOT MODIFIY - GENERATED CODE
<url>https://github.com/monkstone/joonsrenderer/issues</url>
</issueManagement>
<properties>
<janino.version>3.1.2</janino.version>
<janino.version>3.1.3</janino.version>
<jogl.version>2.3.2</jogl.version>
<joonsrenderer.basedir>${project.basedir}</joonsrenderer.basedir>
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
Expand Down Expand Up @@ -154,7 +154,9 @@ DO NOT MODIFIY - GENERATED CODE
<version>3.2.0</version>
<configuration>
<archive>
<manifestFile>MANIFEST.MF</manifestFile>
<manifestEntries>
<Automatic-Module-Name>joonsrenderer</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
Expand Down

0 comments on commit 41f9288

Please sign in to comment.