-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.rb
51 lines (40 loc) · 1.56 KB
/
pom.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
project 'rp5extras', 'https://github.com/ruby-processing/JRubyArt' do
model_version '4.0.0'
id 'ruby-processing:rp5extras:1.7.0'
packaging 'jar'
description 'rp5extras for JRubyArt'
developer 'monkstone' do
name 'Martin Prout'
email 'mamba2928@yahoo.co.uk'
roles 'developer'
end
issue_management 'https://github.com/ruby-processing/JRubyArt/issues', 'Github'
source_control( :url => 'https://github.com/ruby-processing/JRubyArt',
:connection => 'scm:git:git://github.com/ruby-processing/JRubyArt.git',
:developer_connection => 'scm:git:git@github.com/ruby-processing/JRubyArt.git' )
properties( 'processing.api' => 'http://processing.github.io/processing-javadocs/core/',
'polyglot.dump.pom' => 'pom.xml',
'project.build.sourceEncoding' => 'UTF-8',
'maven.compiler.source' => '1.8',
'maven.compiler.target' => '1.8',
'jruby.api' => 'http://jruby.org/apidocs/' )
pom 'org.jruby:jruby:9.2.6.0'
jar 'org.processing:core:3.3.7'
jar 'org.processing:video:3.0.2'
overrides do
plugin :resources, '2.6'
plugin :dependency, '2.8'
plugin( :compiler, '3.8.0',
'source' => '${maven.compiler.source}',
'target' => '${maven.compiler.target}' )
plugin( :javadoc, '2.10.4',
'detectOfflineLinks' => 'false',
'links' => [ '${processing.api}',
'${jruby.api}' ] )
end
build do
default_goal 'package'
source_directory 'src'
final_name 'rpextras'
end
end