maven-tools 1.0.13 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Mavenfile +13 -12
- data/lib/maven/tools/dsl.rb +54 -7
- data/lib/maven/tools/dsl/gem_support.rb +4 -4
- data/lib/maven/tools/dsl/jarfile.rb +8 -1
- data/lib/maven/tools/dsl/jarfile_lock.rb +2 -1
- data/lib/maven/tools/dsl/profile_gemspec.rb +4 -0
- data/lib/maven/tools/dsl/project_gemspec.rb +1 -0
- data/lib/maven/tools/model.rb +7 -0
- data/lib/maven/tools/version.rb +1 -1
- data/lib/maven/tools/versions.rb +5 -5
- data/lib/maven/tools/visitor.rb +4 -1
- data/spec/dsl/gemspec_spec/jars_and_poms.xml +2 -1
- data/spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml +2 -1
- data/spec/dsl/gemspec_spec/maven-tools.xml +2 -1
- data/spec/dsl/jarfile_lock_spec/Jarfile.legacy.lock +1 -1
- data/spec/dsl/jarfile_lock_spec/Jarfile.lock +3 -3
- data/spec/dsl/profile_gemspec_spec/jars_and_poms.xml +11 -3
- data/spec/dsl/profile_gemspec_spec/jars_and_poms_include_jars.xml +11 -3
- data/spec/dsl/profile_gemspec_spec/maven-tools.xml +11 -3
- data/spec/dsl/profile_gemspec_spec/no_gems.xml +11 -3
- data/spec/dsl/profile_gemspec_spec/snapshot.xml +11 -3
- data/spec/dsl/profile_gemspec_spec/unknown_license.xml +11 -3
- data/spec/dsl/project_gemspec_spec/extended.xml +9 -3
- data/spec/dsl/project_gemspec_spec/jars_and_poms.xml +9 -3
- data/spec/dsl/project_gemspec_spec/jars_and_poms_include_jars.xml +9 -3
- data/spec/dsl/project_gemspec_spec/maven-tools.xml +9 -3
- data/spec/dsl/project_gemspec_spec/no_gems.xml +9 -3
- data/spec/dsl/project_gemspec_spec/profile.xml +9 -3
- data/spec/dsl/project_gemspec_spec/snapshot.xml +9 -3
- data/spec/dsl/project_gemspec_spec/unknown_license.xml +9 -3
- data/spec/gemfile/pom.xml +9 -3
- data/spec/gemfile_include_jars/pom.xml +9 -3
- data/spec/gemfile_with_access_to_model/pom.xml +9 -3
- data/spec/gemfile_with_custom_source/Mavenfile +1 -1
- data/spec/gemfile_with_custom_source/pom.xml +9 -3
- data/spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile +1 -1
- data/spec/gemfile_with_custom_source_and_custom_jarname/pom.xml +9 -3
- data/spec/gemfile_with_extras/pom.xml +9 -3
- data/spec/gemfile_with_groups/pom.xml +11 -3
- data/spec/gemfile_with_groups_and_lockfile/pom.xml +13 -5
- data/spec/gemfile_with_jars_lock/pom.xml +11 -3
- data/spec/gemfile_with_lock/Gemfile +1 -0
- data/spec/gemfile_with_lock/Gemfile.lock +1 -1
- data/spec/gemfile_with_lock/pom.xml +13 -7
- data/spec/gemfile_with_path/pom.xml +11 -3
- data/spec/gemfile_with_platforms/pom.xml +11 -3
- data/spec/gemfile_with_source/Gemfile +3 -0
- data/spec/gemfile_with_source/Mavenfile +1 -1
- data/spec/gemfile_with_source/pom.xml +9 -3
- data/spec/gemfile_with_source_and_custom_jarname/Mavenfile +1 -1
- data/spec/gemfile_with_source_and_custom_jarname/pom.xml +9 -3
- data/spec/gemfile_with_source_and_no_jar/Mavenfile +1 -1
- data/spec/gemfile_with_source_and_no_jar/pom.xml +9 -3
- data/spec/gemfile_with_test_group/pom.xml +21 -13
- data/spec/gemfile_with_two_sources/Gemfile +6 -0
- data/spec/gemfile_with_two_sources/Mavenfile +5 -0
- data/spec/gemfile_with_two_sources/pom.xml +58 -0
- data/spec/gemfile_without_gemspec/pom.xml +11 -3
- data/spec/gemspec/pom.xml +9 -3
- data/spec/gemspec_in_profile/pom.xml +13 -3
- data/spec/gemspec_include_jars/pom.xml +9 -3
- data/spec/gemspec_no_rubygems_repo/pom.xml +7 -1
- data/spec/gemspec_prerelease/pom.xml +9 -3
- data/spec/gemspec_prerelease_snapshot/pom.xml +9 -3
- data/spec/gemspec_with_access_to_model/pom.xml +9 -3
- data/spec/gemspec_with_custom_source/pom.xml +9 -3
- data/spec/gemspec_with_custom_source_and_custom_jarname/pom.xml +9 -3
- data/spec/gemspec_with_extras/pom.xml +9 -3
- data/spec/gemspec_with_jar_dependencies/pom.xml +9 -3
- data/spec/gemspec_with_jars_lock/pom.xml +9 -3
- data/spec/gemspec_with_prereleased_dependency/pom.xml +9 -3
- data/spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml +7 -1
- data/spec/gemspec_with_source/pom.xml +9 -3
- data/spec/gemspec_with_source_and_custom_jarname/pom.xml +9 -3
- data/spec/gemspec_with_source_and_no_jar/pom.xml +9 -3
- data/spec/mavenfile/Mavenfile +9 -9
- data/spec/mavenfile_jrubyJar/pom.xml +2 -2
- data/spec/mavenfile_jrubyWar/pom.xml +2 -2
- data/spec/pom.xml +3 -1
- data/spec/pom_from_jarfile/pom.xml +1 -1
- data/spec/pom_maven_alternative_style/pom.rb +3 -1
- data/spec/pom_maven_hash_style/pom.rb +3 -1
- data/spec/pom_maven_style/pom.rb +3 -1
- data/spec/pom_spec.rb +1 -1
- data/spec/pom_with_execute/pom.xml +2 -2
- metadata +19 -11
@@ -30,7 +30,8 @@
|
|
30
30
|
</scm>
|
31
31
|
<properties>
|
32
32
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
33
|
-
<jruby.plugins.version>1.1.
|
33
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
34
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
34
35
|
</properties>
|
35
36
|
<dependencies>
|
36
37
|
<dependency>
|
@@ -43,8 +44,8 @@
|
|
43
44
|
</dependencies>
|
44
45
|
<repositories>
|
45
46
|
<repository>
|
46
|
-
<id>
|
47
|
-
<url>
|
47
|
+
<id>mavengems</id>
|
48
|
+
<url>mavengem:https://rubygems.org</url>
|
48
49
|
</repository>
|
49
50
|
<repository>
|
50
51
|
<releases>
|
@@ -59,6 +60,11 @@
|
|
59
60
|
</repositories>
|
60
61
|
<build>
|
61
62
|
<extensions>
|
63
|
+
<extension>
|
64
|
+
<groupId>org.torquebox.mojo</groupId>
|
65
|
+
<artifactId>mavengem-wagon</artifactId>
|
66
|
+
<version>${mavengem.wagon.version}</version>
|
67
|
+
</extension>
|
62
68
|
<extension>
|
63
69
|
<groupId>de.saumya.mojo</groupId>
|
64
70
|
<artifactId>gem-extension</artifactId>
|
@@ -30,7 +30,8 @@
|
|
30
30
|
</scm>
|
31
31
|
<properties>
|
32
32
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
33
|
-
<jruby.plugins.version>1.1.
|
33
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
34
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
34
35
|
</properties>
|
35
36
|
<dependencies>
|
36
37
|
<dependency>
|
@@ -55,6 +56,11 @@
|
|
55
56
|
</repositories>
|
56
57
|
<build>
|
57
58
|
<extensions>
|
59
|
+
<extension>
|
60
|
+
<groupId>org.torquebox.mojo</groupId>
|
61
|
+
<artifactId>mavengem-wagon</artifactId>
|
62
|
+
<version>${mavengem.wagon.version}</version>
|
63
|
+
</extension>
|
58
64
|
<extension>
|
59
65
|
<groupId>de.saumya.mojo</groupId>
|
60
66
|
<artifactId>gem-extension</artifactId>
|
@@ -30,7 +30,8 @@
|
|
30
30
|
</scm>
|
31
31
|
<properties>
|
32
32
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
33
|
-
<jruby.plugins.version>1.1.
|
33
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
34
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
34
35
|
</properties>
|
35
36
|
<dependencies>
|
36
37
|
<dependency>
|
@@ -46,12 +47,17 @@
|
|
46
47
|
</dependencies>
|
47
48
|
<repositories>
|
48
49
|
<repository>
|
49
|
-
<id>
|
50
|
-
<url>
|
50
|
+
<id>mavengems</id>
|
51
|
+
<url>mavengem:https://rubygems.org</url>
|
51
52
|
</repository>
|
52
53
|
</repositories>
|
53
54
|
<build>
|
54
55
|
<extensions>
|
56
|
+
<extension>
|
57
|
+
<groupId>org.torquebox.mojo</groupId>
|
58
|
+
<artifactId>mavengem-wagon</artifactId>
|
59
|
+
<version>${mavengem.wagon.version}</version>
|
60
|
+
</extension>
|
55
61
|
<extension>
|
56
62
|
<groupId>de.saumya.mojo</groupId>
|
57
63
|
<artifactId>gem-with-jar-extension</artifactId>
|
@@ -30,7 +30,8 @@
|
|
30
30
|
</scm>
|
31
31
|
<properties>
|
32
32
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
33
|
-
<jruby.plugins.version>1.1.
|
33
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
34
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
34
35
|
</properties>
|
35
36
|
<dependencies>
|
36
37
|
<dependency>
|
@@ -49,12 +50,17 @@
|
|
49
50
|
</dependencies>
|
50
51
|
<repositories>
|
51
52
|
<repository>
|
52
|
-
<id>
|
53
|
-
<url>
|
53
|
+
<id>mavengems</id>
|
54
|
+
<url>mavengem:https://rubygems.org</url>
|
54
55
|
</repository>
|
55
56
|
</repositories>
|
56
57
|
<build>
|
57
58
|
<extensions>
|
59
|
+
<extension>
|
60
|
+
<groupId>org.torquebox.mojo</groupId>
|
61
|
+
<artifactId>mavengem-wagon</artifactId>
|
62
|
+
<version>${mavengem.wagon.version}</version>
|
63
|
+
</extension>
|
58
64
|
<extension>
|
59
65
|
<groupId>de.saumya.mojo</groupId>
|
60
66
|
<artifactId>gem-with-jar-extension</artifactId>
|
@@ -30,7 +30,8 @@
|
|
30
30
|
</scm>
|
31
31
|
<properties>
|
32
32
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
33
|
-
<jruby.plugins.version>1.1.
|
33
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
34
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
34
35
|
</properties>
|
35
36
|
<dependencies>
|
36
37
|
<dependency>
|
@@ -49,12 +50,17 @@
|
|
49
50
|
</dependencies>
|
50
51
|
<repositories>
|
51
52
|
<repository>
|
52
|
-
<id>
|
53
|
-
<url>
|
53
|
+
<id>mavengems</id>
|
54
|
+
<url>mavengem:https://rubygems.org</url>
|
54
55
|
</repository>
|
55
56
|
</repositories>
|
56
57
|
<build>
|
57
58
|
<extensions>
|
59
|
+
<extension>
|
60
|
+
<groupId>org.torquebox.mojo</groupId>
|
61
|
+
<artifactId>mavengem-wagon</artifactId>
|
62
|
+
<version>${mavengem.wagon.version}</version>
|
63
|
+
</extension>
|
58
64
|
<extension>
|
59
65
|
<groupId>de.saumya.mojo</groupId>
|
60
66
|
<artifactId>gem-extension</artifactId>
|
data/spec/mavenfile/Mavenfile
CHANGED
@@ -196,15 +196,15 @@ plugin_repository do
|
|
196
196
|
end
|
197
197
|
end
|
198
198
|
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
199
|
+
default_goal :deploy
|
200
|
+
directory 'target'
|
201
|
+
final_name 'myproject'
|
202
|
+
extension 'org.group:gem-extension:1.2'
|
203
|
+
source_directory 'src'
|
204
|
+
script_source_directory 'script'
|
205
|
+
test_source_directory 'test'
|
206
|
+
output_directory 'pkg'
|
207
|
+
test_output_directory 'pkg/test'
|
208
208
|
|
209
209
|
resource do
|
210
210
|
target_path 'target'
|
@@ -17,12 +17,12 @@
|
|
17
17
|
<packaging>jrubyJar</packaging>
|
18
18
|
<name>mavenfile_jrubyJar</name>
|
19
19
|
<properties>
|
20
|
-
<jruby9.plugins.version>0.
|
20
|
+
<jruby9.plugins.version>0.3.0</jruby9.plugins.version>
|
21
21
|
</properties>
|
22
22
|
<build>
|
23
23
|
<extensions>
|
24
24
|
<extension>
|
25
|
-
<groupId>
|
25
|
+
<groupId>org.torquebox.mojo</groupId>
|
26
26
|
<artifactId>jruby9-extensions</artifactId>
|
27
27
|
<version>${jruby9.plugins.version}</version>
|
28
28
|
</extension>
|
@@ -17,12 +17,12 @@
|
|
17
17
|
<packaging>jrubyWar</packaging>
|
18
18
|
<name>mavenfile_jrubyWar</name>
|
19
19
|
<properties>
|
20
|
-
<jruby9.plugins.version>0.
|
20
|
+
<jruby9.plugins.version>0.3.0</jruby9.plugins.version>
|
21
21
|
</properties>
|
22
22
|
<build>
|
23
23
|
<extensions>
|
24
24
|
<extension>
|
25
|
-
<groupId>
|
25
|
+
<groupId>org.torquebox.mojo</groupId>
|
26
26
|
<artifactId>jruby9-extensions</artifactId>
|
27
27
|
<version>${jruby9.plugins.version}</version>
|
28
28
|
</extension>
|
data/spec/pom.xml
CHANGED
@@ -283,7 +283,7 @@
|
|
283
283
|
<version>1.2</version>
|
284
284
|
</extension>
|
285
285
|
</extensions>
|
286
|
-
<defaultGoal>
|
286
|
+
<defaultGoal>deploy</defaultGoal>
|
287
287
|
<resources>
|
288
288
|
<resource>
|
289
289
|
<targetPath>target</targetPath>
|
@@ -310,6 +310,8 @@
|
|
310
310
|
</excludes>
|
311
311
|
</testResource>
|
312
312
|
</testResources>
|
313
|
+
<directory>target</directory>
|
314
|
+
<finalName>myproject</finalName>
|
313
315
|
<pluginManagement>
|
314
316
|
<plugins>
|
315
317
|
<plugin>
|
@@ -140,12 +140,14 @@ project 'my name', 'example.com' do
|
|
140
140
|
end
|
141
141
|
|
142
142
|
build do
|
143
|
+
default_goal :deploy
|
144
|
+
directory 'target'
|
145
|
+
final_name 'myproject'
|
143
146
|
source_directory 'src'
|
144
147
|
script_source_directory 'script'
|
145
148
|
test_source_directory 'test'
|
146
149
|
output_directory 'pkg'
|
147
150
|
test_output_directory 'pkg/test'
|
148
|
-
default_goal :install
|
149
151
|
extension 'org.group', 'gem-extension', '1.2'
|
150
152
|
resource do
|
151
153
|
target_path 'target'
|
@@ -163,12 +163,14 @@ project :name => 'my name', :url => 'example.com' do
|
|
163
163
|
:checksum_policy => 'none' )
|
164
164
|
end
|
165
165
|
build do
|
166
|
+
directory 'target'
|
167
|
+
final_name 'myproject'
|
166
168
|
source_directory 'src'
|
167
169
|
script_source_directory 'script'
|
168
170
|
test_source_directory 'test'
|
169
171
|
output_directory 'pkg'
|
170
172
|
test_output_directory 'pkg/test'
|
171
|
-
default_goal :
|
173
|
+
default_goal :deploy
|
172
174
|
extension( :group_id => 'org.group',
|
173
175
|
:artifact_id => 'gem-extension',
|
174
176
|
:version => '1.2' )
|
data/spec/pom_maven_style/pom.rb
CHANGED
@@ -224,12 +224,14 @@ project do
|
|
224
224
|
end
|
225
225
|
end
|
226
226
|
build do
|
227
|
+
default_goal :deploy
|
228
|
+
directory 'target'
|
229
|
+
final_name 'myproject'
|
227
230
|
source_directory 'src'
|
228
231
|
script_source_directory 'script'
|
229
232
|
test_source_directory 'test'
|
230
233
|
output_directory 'pkg'
|
231
234
|
test_output_directory 'pkg/test'
|
232
|
-
default_goal :install
|
233
235
|
extension 'org.group:gem-extension:1.2'
|
234
236
|
resource do
|
235
237
|
target_path 'target'
|
data/spec/pom_spec.rb
CHANGED
@@ -18,7 +18,7 @@ describe Maven::Tools::POM do
|
|
18
18
|
pom_xml.gsub!( /tesla-polyglot/, 'polyglot' )
|
19
19
|
pom_xml.gsub!( /${tesla.version}/, Maven::Tools::VERSIONS[ :polyglot_version ] )
|
20
20
|
|
21
|
-
pom.to_s.
|
21
|
+
pom.to_s.must_equal pom_xml
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|
@@ -20,7 +20,7 @@
|
|
20
20
|
<plugin>
|
21
21
|
<groupId>io.takari.polyglot</groupId>
|
22
22
|
<artifactId>polyglot-maven-plugin</artifactId>
|
23
|
-
<version>0.1.
|
23
|
+
<version>0.1.15</version>
|
24
24
|
<executions>
|
25
25
|
<execution>
|
26
26
|
<phase>validate</phase>
|
@@ -80,7 +80,7 @@
|
|
80
80
|
<dependency>
|
81
81
|
<groupId>io.takari.polyglot</groupId>
|
82
82
|
<artifactId>polyglot-ruby</artifactId>
|
83
|
-
<version>0.1.
|
83
|
+
<version>0.1.15</version>
|
84
84
|
</dependency>
|
85
85
|
</dependencies>
|
86
86
|
</plugin>
|
metadata
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: maven-tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Meier
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
15
15
|
requirements:
|
16
|
-
- - ~>
|
16
|
+
- - "~>"
|
17
17
|
- !ruby/object:Gem::Version
|
18
18
|
version: '1.0'
|
19
19
|
name: virtus
|
@@ -21,13 +21,13 @@ dependencies:
|
|
21
21
|
type: :runtime
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - ~>
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
29
29
|
requirements:
|
30
|
-
- - ~>
|
30
|
+
- - "~>"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '10.0'
|
33
33
|
name: rake
|
@@ -35,13 +35,13 @@ dependencies:
|
|
35
35
|
type: :development
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - ~>
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
|
-
- - ~>
|
44
|
+
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '5.3'
|
47
47
|
name: minitest
|
@@ -49,7 +49,7 @@ dependencies:
|
|
49
49
|
type: :development
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - ~>
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '5.3'
|
55
55
|
description: adds versions conversion from rubygems to maven and vice versa, ruby DSL for POM (Project Object Model from maven), pom generators, etc
|
@@ -180,6 +180,7 @@ files:
|
|
180
180
|
- spec/gemfile_with_platforms/Gemfile
|
181
181
|
- spec/gemfile_with_platforms/Mavenfile
|
182
182
|
- spec/gemfile_with_platforms/pom.xml
|
183
|
+
- spec/gemfile_with_source/Gemfile
|
183
184
|
- spec/gemfile_with_source/Mavenfile
|
184
185
|
- spec/gemfile_with_source/bouncy-castle-java.gemspec
|
185
186
|
- spec/gemfile_with_source/bouncy-castle-version.rb
|
@@ -199,6 +200,9 @@ files:
|
|
199
200
|
- spec/gemfile_with_test_group/Gemfile.lock
|
200
201
|
- spec/gemfile_with_test_group/Mavenfile
|
201
202
|
- spec/gemfile_with_test_group/pom.xml
|
203
|
+
- spec/gemfile_with_two_sources/Gemfile
|
204
|
+
- spec/gemfile_with_two_sources/Mavenfile
|
205
|
+
- spec/gemfile_with_two_sources/pom.xml
|
202
206
|
- spec/gemfile_without_gemspec/Gemfile
|
203
207
|
- spec/gemfile_without_gemspec/Mavenfile
|
204
208
|
- spec/gemfile_without_gemspec/pom.xml
|
@@ -319,17 +323,17 @@ require_paths:
|
|
319
323
|
- lib
|
320
324
|
required_ruby_version: !ruby/object:Gem::Requirement
|
321
325
|
requirements:
|
322
|
-
- -
|
326
|
+
- - ">="
|
323
327
|
- !ruby/object:Gem::Version
|
324
328
|
version: '0'
|
325
329
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
326
330
|
requirements:
|
327
|
-
- -
|
331
|
+
- - ">="
|
328
332
|
- !ruby/object:Gem::Version
|
329
333
|
version: '0'
|
330
334
|
requirements: []
|
331
335
|
rubyforge_project:
|
332
|
-
rubygems_version: 2.4.
|
336
|
+
rubygems_version: 2.4.8
|
333
337
|
signing_key:
|
334
338
|
specification_version: 4
|
335
339
|
summary: helpers for maven related tasks
|
@@ -401,6 +405,7 @@ test_files:
|
|
401
405
|
- spec/gemfile_with_source_and_custom_jarname/pom.xml
|
402
406
|
- spec/gemfile_with_source_and_no_jar/pom.xml
|
403
407
|
- spec/gemfile_with_test_group/pom.xml
|
408
|
+
- spec/gemfile_with_two_sources/pom.xml
|
404
409
|
- spec/gemfile_without_gemspec/pom.xml
|
405
410
|
- spec/gemspec/pom.xml
|
406
411
|
- spec/gemspec_in_profile/pom.xml
|
@@ -455,6 +460,7 @@ test_files:
|
|
455
460
|
- spec/gemfile_with_path/Mavenfile
|
456
461
|
- spec/gemfile_with_platforms/Gemfile
|
457
462
|
- spec/gemfile_with_platforms/Mavenfile
|
463
|
+
- spec/gemfile_with_source/Gemfile
|
458
464
|
- spec/gemfile_with_source/Mavenfile
|
459
465
|
- spec/gemfile_with_source_and_custom_jarname/Gemfile
|
460
466
|
- spec/gemfile_with_source_and_custom_jarname/Mavenfile
|
@@ -462,6 +468,8 @@ test_files:
|
|
462
468
|
- spec/gemfile_with_source_and_no_jar/Mavenfile
|
463
469
|
- spec/gemfile_with_test_group/Gemfile
|
464
470
|
- spec/gemfile_with_test_group/Mavenfile
|
471
|
+
- spec/gemfile_with_two_sources/Gemfile
|
472
|
+
- spec/gemfile_with_two_sources/Mavenfile
|
465
473
|
- spec/gemfile_without_gemspec/Gemfile
|
466
474
|
- spec/gemfile_without_gemspec/Mavenfile
|
467
475
|
- spec/gemspec/Mavenfile
|