Skip to content

Commit 36f82a5

Browse files
committed
update maven artifacts
1 parent 96c700b commit 36f82a5

6 files changed

Lines changed: 15 additions & 12 deletions

File tree

.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.18</version>
77
</extension>
88
</extensions>

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
### v0.8.0
21

2+
### v0.9.0
3+
4+
Update maven artifacts
5+
6+
### v0.8.0
37
Update for JRubyArt-1.1+ and processing-3.1+
48

59
### v0.7.0

examples/test_contact/test_contact.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ def setup
1919
end
2020

2121
def draw
22-
col = color('#ffffff')
23-
background(col)
22+
background color('#ffffff')
2423
particles << Particle.new(self, rand(width), 20, rand(4..8)) if rand < 0.1
2524
particles.each(&:display)
2625
particles.reject!(&:done)

lib/pbox2d/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# module to give version a namespace
22
module Pbox2d
3-
VERSION = '0.8.0'
3+
VERSION = '0.9.0'
44
end

pbox2d.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ EOF
2121
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
2222
spec.files << 'lib/box2d.jar'
2323
spec.require_paths = ['lib']
24-
spec.add_dependency 'jruby_art', '~> 1.1', '>= 1.1.1'
24+
spec.add_dependency 'jruby_art', '~> 1.1', '>= 1.1.3'
2525
spec.add_development_dependency "rake", "~> 11.1"
2626
spec.add_development_dependency "minitest", "~> 5.8"
2727
spec.platform='java'

pom.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
project 'pbox2d', 'https://github.com/ruby-processing/jbox2d' do
33

44
model_version '4.0.0'
5-
id 'ruby-processing:pbox2d', '0.8'
5+
id 'ruby-processing:pbox2d', '0.9'
66
packaging 'jar'
77

88
description 'jbox2d for JRubyArt'
@@ -11,7 +11,7 @@
1111

1212
developer 'monkstone' do
1313
name 'Martin Prout'
14-
email 'martin_p@lineone.net'
14+
email 'mamba2928@yahoo.co.uk'
1515
roles 'developer'
1616
end
1717

@@ -34,18 +34,18 @@
3434
)
3535

3636
pom 'org.jruby:jruby:9.1.2.0'
37-
jar 'org.processing:core:3.1'
37+
jar 'org.processing:core:3.1.1
3838
plugin_management do
3939
plugin :resources, '2.6'
4040
plugin :dependency, '2.8'
41-
plugin( :compiler, '3.3',
41+
plugin( :compiler, '3.5.1',
4242
'source' => '1.8',
4343
'target' => '1.8' )
44-
plugin( :javadoc, '2.10.3',
44+
plugin( :javadoc, '2.10.4',
4545
'detectOfflineLinks' => 'false',
4646
'links' => ['${processing.api}', '${jruby.api}']
4747
)
48-
plugin( :jar, '2.6',
48+
plugin( :jar, '3.0.2',
4949
'archive' => {
5050
'manifestFile' => 'MANIFEST.MF'
5151
}

0 commit comments

Comments
 (0)