-
Notifications
You must be signed in to change notification settings - Fork 94
/
pom.rb
59 lines (55 loc) · 1.62 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
52
53
54
55
56
57
58
59
require 'fileutils'
project 'rp5extras', 'https://github.com/jashkenas/ruby-processing' do
model_version '4.0.0'
id 'ruby-processing:rp5extras', '2.7.1'
packaging 'jar'
description 'rp5extras for ruby-processing'
organization 'ruby-processing', 'https://ruby-processing.github.io'
developer 'monkstone' do
name 'Martin Prout'
email '[email protected]'
roles 'developer'
end
issue_management 'https://github.com/jashkenas/ruby-processing/issues', 'Github'
source_control(
url: 'https://github.com/jashkenas/ruby-processing',
connection: 'scm:git:git://github.com/jashkenas/ruby-processing.git',
developer_connection: 'scm:git:[email protected]/jashkenas/ruby-processing.git'
)
properties(
'maven.compiler.source' => '1.7',
'project.build.sourceEncoding' => 'UTF-8',
'maven.compiler.target' => '1.7',
'polyglot.dump.pom' => 'pom.xml',
'processing.api' => 'http://processing.github.io/processing-javadocs/core/',
'jruby.api' => 'http://jruby.org/apidocs/'
)
pom 'org.jruby:jruby:1.7.25'
jar 'org.processing:core:2.2.1'
jar 'org.processing:video:2.2.1'
plugin_management do
plugin :resources, '2.6'
plugin :dependency, '2.10'
plugin(
:compiler, '3.5.1',
'source' => '1.7',
'target' => '1.7'
)
plugin(
:javadoc, '2.10.4',
'detectOfflineLinks' => 'false',
'links' => ['${processing.api}', '${jruby.api}']
)
plugin(
:jar, '3.0.2',
'archive' => {
'manifestFile' => 'MANIFEST.MF'
}
)
end
build do
default_goal 'package'
source_directory 'src'
final_name 'rpextras'
end
end