File tree Expand file tree Collapse file tree 5 files changed +7
-42
lines changed
Expand file tree Collapse file tree 5 files changed +7
-42
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 2424desc 'Compile'
2525task :compile do
2626 sh "mvn package"
27- sh "mvn dependency:copy"
2827 sh "mv target/toxiclibs.jar lib"
2928end
3029
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff line change 1- # coding: utf-8
1+ # frozen_string_literal: true
2+
23lib = File . expand_path ( '../lib' , __FILE__ )
34$LOAD_PATH. unshift ( lib ) unless $LOAD_PATH. include? ( lib )
45require 'toxiclibs/version'
56
67Gem ::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'
2323end
You can’t perform that action at this time.
0 commit comments