propane 2.9.3-java → 3.0.0.pre-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/pom.rb DELETED
@@ -1,72 +0,0 @@
1
- require 'fileutils'
2
- project 'propane', 'https://github.com/monkstone/propane' do
3
- model_version '4.0.0'
4
- id 'propane:propane:2.9.3'
5
- packaging 'jar'
6
- description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'
7
-
8
- organization 'ruby-processing', 'https://ruby-processing.github.io'
9
-
10
- {
11
- 'monkstone' => 'Martin Prout', 'benfry' => 'Ben Fry',
12
- 'REAS' => 'Casey Reas', 'codeanticode' => 'Andres Colubri'
13
- }.each do |key, value|
14
- developer key do
15
- name value
16
- roles 'developer'
17
- end
18
- end
19
- license 'GPL 3', 'http://www.gnu.org/licenses/gpl-3.0-standalone.html'
20
- license 'LGPL 2', 'https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html'
21
- issue_management 'https://github.com/ruby-processing/propane/issues', 'Github'
22
-
23
- source_control(
24
- url: 'https://github.com/ruby-processing/propane',
25
- connection: 'scm:git:git://github.com/ruby-processing/propane.git',
26
- developer_connection: 'scm:git:git@github.com/ruby-processing/propane.git'
27
- )
28
-
29
- properties('source.directory' => 'src',
30
- 'propane.basedir' => '${project.basedir}',
31
- 'polyglot.dump.pom' => 'pom.xml',
32
- 'maven.compiler.source' => '1.8',
33
- 'project.build.sourceEncoding' => 'utf-8',
34
- 'maven.compiler.target' => '1.8',
35
- 'jruby.api' => 'http://jruby.org/apidocs/',
36
- 'processing.api' => 'http://processing.github.io/processing-javadocs/core/',
37
- 'jruby.api' => 'http://jruby.org/apidocs/',
38
- 'jogl.version' => '2.3.2'
39
- )
40
-
41
- pom 'org.jruby:jruby:9.2.4.1'
42
- jar 'com.apple.eawt:apple:1.0'
43
- jar 'org.processing:video:3.0.2'
44
- jar('org.jogamp.jogl:jogl-all:${jogl.version}')
45
- jar('org.jogamp.gluegen:gluegen-rt-main:${jogl.version}')
46
-
47
- plugin_management do
48
- plugin( :compiler, '3.8.0',
49
- source: '${maven.compiler.source}',
50
- target: '${maven.compiler.target}'
51
- )
52
- plugin( :javadoc, '2.10.4',
53
- detect_offline_links: 'false',
54
- links: ['${jruby.api}', '${processing.api}']
55
- )
56
- plugin( :jar, '3.0.2',
57
- archive: { manifestFile: 'MANIFEST.MF' }
58
- )
59
- end
60
-
61
- build do
62
- resource do
63
- directory '${source.directory}/main/java'
64
- includes ['**/**/*.glsl', '**/*.jnilib']
65
- excludes '**/**/*.java'
66
- end
67
- resource do
68
- directory '${source.directory}/main/resources'
69
- includes ['**/*.png', '*.txt']
70
- end
71
- end
72
- end