Skip to content

Commit c87f035

Browse files
committed
Update
1 parent 02d6897 commit c87f035

File tree

5 files changed

+7
-42
lines changed

5 files changed

+7
-42
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
**v2.0.0** Bump to jdk12 and fix code
1+
**v2.0.0** Bump to target minimum of jdk11 thus removing JAXB annotations (possibly esoteric and underused anyway).
22

33
**v1.0.1** Bump processing to 3.4, support toxiclibs Voronoi etc
44

Rakefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ end
2424
desc 'Compile'
2525
task :compile do
2626
sh "mvn package"
27-
sh "mvn dependency:copy"
2827
sh "mv target/toxiclibs.jar lib"
2928
end
3029

pom.rb

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,6 @@
4040
plugin :jdeps, '3.1.2' do
4141
execute_goals 'jdkinternals', 'test-jdkinternals'
4242
end
43-
plugin :resources, '3.1.0'
44-
plugin :dependency, '3.1.1' do
45-
execute_goals( :id => 'default-cli',
46-
'artifactItems' => [ { 'groupId' => 'args4j',
47-
'artifactId' => 'args4j',
48-
'version' => '2.0.31',
49-
'type' => 'jar',
50-
'outputDirectory' => 'lib' } ] )
51-
end
52-
5343

5444
build do
5545
resource do

pom.xml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -99,30 +99,6 @@ DO NOT MODIFIY - GENERATED CODE
9999
</execution>
100100
</executions>
101101
</plugin>
102-
<plugin>
103-
<artifactId>maven-resources-plugin</artifactId>
104-
<version>3.1.0</version>
105-
</plugin>
106-
<plugin>
107-
<artifactId>maven-dependency-plugin</artifactId>
108-
<version>3.1.1</version>
109-
<executions>
110-
<execution>
111-
<id>default-cli</id>
112-
<configuration>
113-
<artifactItems>
114-
<artifactItem>
115-
<groupId>args4j</groupId>
116-
<artifactId>args4j</artifactId>
117-
<version>2.0.31</version>
118-
<type>jar</type>
119-
<outputDirectory>lib</outputDirectory>
120-
</artifactItem>
121-
</artifactItems>
122-
</configuration>
123-
</execution>
124-
</executions>
125-
</plugin>
126102
</plugins>
127103
</build>
128104
</project>

toxiclibs.gemspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# coding: utf-8
1+
# frozen_string_literal: true
2+
23
lib = File.expand_path('../lib', __FILE__)
34
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
45
require 'toxiclibs/version'
56

67
Gem::Specification.new do |spec|
78
spec.name = 'toxiclibs'
89
spec.version = Toxiclibs::VERSION
9-
spec.extra_rdoc_files = %w(README.md LICENSE.md)
10-
spec.summary = %q(Updated and extended toxiclibs libraries for JRubyArt and propane)
10+
spec.extra_rdoc_files = %w[README.md LICENSE.md]
11+
spec.summary = %q[Updated and extended toxiclibs libraries for JRubyArt and propane]
1112
spec.description =<<-EOS
12-
Toxiclibs java libraries wrapped in a rubygem. Compiled and tested with JRubyArt-1.5.4 and processing-3.4
13+
Toxiclibs java libraries wrapped in a rubygem. Compiled and tested with JRubyArt-2.4 and processing-3.4
1314
EOS
1415
spec.licenses = %w(MIT LGPL-3.0)
1516
spec.authors = %w(Karsten\ Schmidt Martin\ Prout)
1617
spec.email = 'mamba2928@yahoo.co.uk'
1718
spec.homepage = 'http://ruby-processing.github.io/toxicgem/'
18-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19+
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
1920
spec.files << 'lib/toxiclibs.jar'
20-
spec.files << 'lib/args4j-2.0.31.jar'
2121
spec.require_paths = ['lib']
2222
spec.add_development_dependency 'rake', '~> 12.3', '>= 12.3.0'
2323
end

0 commit comments

Comments
 (0)