|
1 | 1 | require 'fileutils' |
2 | 2 | project 'arcball', 'https://github.com/ruby-processing/ArcBall' do |
3 | 3 | model_version '4.0.0' |
4 | | - id 'arcball:arcball', '0.0.2' |
| 4 | + id 'arcball:arcball', '1.0.0' |
5 | 5 | packaging 'jar' |
6 | 6 | description 'arcball for arcball' |
7 | 7 | organization 'ruby-processing', 'https://ruby-processing.github.io' |
|
11 | 11 | roles 'developer' |
12 | 12 | end |
13 | 13 | end |
14 | | - |
| 14 | + |
15 | 15 | issue_management 'https://github.com/monkstone/arcball/issues', 'Github' |
16 | | - |
| 16 | + |
17 | 17 | source_control( |
18 | 18 | url: 'https://github.com/ruby-processing/ArcBall', |
19 | 19 | connection: 'scm:git:git://github.com/ruby-processing/ArcBall', |
20 | 20 | developer_connection: 'scm:git:[email protected]/ruby-processing/ArcBall.git' |
21 | 21 | ) |
22 | | - |
| 22 | + |
23 | 23 | properties('source.directory' => 'src', |
24 | 24 | 'arcball.basedir' => '${project.basedir}', |
25 | 25 | 'polyglot.dump.pom' => 'pom.xml', |
26 | | - 'maven.compiler.source' => '1.7', |
| 26 | + 'maven.compiler.source' => '1.8', |
27 | 27 | 'project.build.sourceEncoding' => 'utf-8', |
28 | | - 'maven.compiler.target' => '1.7', |
| 28 | + 'maven.compiler.target' => '1.8', |
29 | 29 | 'jruby.api' => 'http://jruby.org/apidocs/', |
30 | 30 | 'processing.api' => 'http://processing.github.io/processing-javadocs/core/', |
31 | 31 | 'jruby.api' => 'http://jruby.org/apidocs/', |
32 | 32 | ) |
33 | | - |
34 | | - pom('org.jruby:jruby:9.0.5.0') |
35 | | - jar('org.processing:core:2.2.1') |
36 | | - |
| 33 | + |
| 34 | + pom('org.jruby:jruby:9.1.8.0') |
| 35 | + jar('org.processing:core:3.2.3') |
| 36 | + |
37 | 37 | plugin_management do |
38 | 38 | plugin :resources, '2.6' |
39 | 39 | plugin :dependency, '2.10' |
40 | | - |
41 | | - plugin( :compiler, '3.3', |
| 40 | + |
| 41 | + plugin( :compiler, '3.5.1', |
42 | 42 | source: '${maven.compiler.source}', |
43 | 43 | target: '${maven.compiler.target}' |
44 | 44 | ) |
45 | | - plugin( :javadoc, '2.10.3', |
| 45 | + plugin( :javadoc, '2.10.4', |
46 | 46 | detect_offline_links: 'false', |
47 | 47 | links: ['${jruby.api}', '${processing.api}'] |
48 | 48 | ) |
49 | | - plugin( :jar, '2.6', |
| 49 | + plugin( :jar, '3.0.2', |
50 | 50 | archive: { manifestFile: 'MANIFEST.MF' } |
51 | 51 | ) |
52 | 52 | end |
|
0 commit comments