Skip to content

Commit f7e0826

Browse files
committed
fix pom.rb
1 parent 36f82a5 commit f7e0826

2 files changed

Lines changed: 15 additions & 13 deletions

File tree

pom.rb

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,20 @@
2929
'project.build.sourceEncoding' => 'UTF-8',
3030
'maven.compiler.target' => '1.8',
3131
'polyglot.dump.pom' => 'pom.xml',
32-
'processing.api' => "http://processing.github.io/processing-javadocs/core/",
32+
'processing.api' => 'http://processing.github.io/processing-javadocs/core/',
3333
'jruby.api' => "http://jruby.org/apidocs/"
3434
)
3535

3636
pom 'org.jruby:jruby:9.1.2.0'
37-
jar 'org.processing:core:3.1.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.5.1',
42-
'source' => '1.8',
43-
'target' => '1.8' )
41+
plugin(
42+
:compiler, '3.5.1',
43+
source: '${maven.compiler.source}',
44+
target: '${maven.compiler.target}'
45+
)
4446
plugin( :javadoc, '2.10.4',
4547
'detectOfflineLinks' => 'false',
4648
'links' => ['${processing.api}', '${jruby.api}']

pom.xml

Lines changed: 8 additions & 8 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>pbox2d</artifactId>
14-
<version>0.8</version>
14+
<version>0.9</version>
1515
<name>pbox2d</name>
1616
<description>jbox2d for JRubyArt</description>
1717
<url>https://github.com/ruby-processing/jbox2d</url>
@@ -29,7 +29,7 @@ DO NOT MODIFIY - GENERATED CODE
2929
<developer>
3030
<id>monkstone</id>
3131
<name>Martin Prout</name>
32-
<email>martin_p@lineone.net</email>
32+
<email>mamba2928@yahoo.co.uk</email>
3333
<roles>
3434
<role>developer</role>
3535
</roles>
@@ -62,7 +62,7 @@ DO NOT MODIFIY - GENERATED CODE
6262
<dependency>
6363
<groupId>org.processing</groupId>
6464
<artifactId>core</artifactId>
65-
<version>3.1</version>
65+
<version>3.1.1</version>
6666
</dependency>
6767
</dependencies>
6868
<build>
@@ -81,15 +81,15 @@ DO NOT MODIFIY - GENERATED CODE
8181
</plugin>
8282
<plugin>
8383
<artifactId>maven-compiler-plugin</artifactId>
84-
<version>3.3</version>
84+
<version>3.5.1</version>
8585
<configuration>
86-
<source>1.8</source>
87-
<target>1.8</target>
86+
<source>${maven.compiler.source}</source>
87+
<target>${maven.compiler.target}</target>
8888
</configuration>
8989
</plugin>
9090
<plugin>
9191
<artifactId>maven-javadoc-plugin</artifactId>
92-
<version>2.10.3</version>
92+
<version>2.10.4</version>
9393
<configuration>
9494
<detectOfflineLinks>false</detectOfflineLinks>
9595
<links>
@@ -100,7 +100,7 @@ DO NOT MODIFIY - GENERATED CODE
100100
</plugin>
101101
<plugin>
102102
<artifactId>maven-jar-plugin</artifactId>
103-
<version>2.6</version>
103+
<version>3.0.2</version>
104104
<configuration>
105105
<archive>
106106
<manifestFile>MANIFEST.MF</manifestFile>

0 commit comments

Comments
 (0)