maven-tools 1.0.0.rc4 → 1.0.0.rc5

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.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/lib/maven/tools/dsl.rb +27 -8
  3. data/lib/maven/tools/gemfile_lock.rb +1 -1
  4. data/lib/maven/tools/version.rb +1 -1
  5. data/lib/maven/tools/versions.rb +1 -1
  6. data/spec/gemfile/pom.xml +1 -1
  7. data/spec/gemfile_include_jars/pom.xml +1 -1
  8. data/spec/gemfile_with_access_to_model/pom.xml +1 -1
  9. data/spec/gemfile_with_custom_source/pom.xml +2 -2
  10. data/spec/gemfile_with_custom_source_and_custom_jarname/pom.xml +2 -2
  11. data/spec/gemfile_with_extras/pom.xml +1 -1
  12. data/spec/gemfile_with_groups/pom.xml +17 -1
  13. data/spec/gemfile_with_groups_and_lockfile/pom.xml +17 -1
  14. data/spec/gemfile_with_lock/pom.xml +1 -1
  15. data/spec/gemfile_with_path/pom.xml +6 -1
  16. data/spec/gemfile_with_source/pom.xml +2 -2
  17. data/spec/gemfile_with_source_and_custom_jarname/pom.xml +2 -2
  18. data/spec/gemfile_with_source_and_no_jar/pom.xml +1 -1
  19. data/spec/gemfile_with_test_group/Gemfile +27 -0
  20. data/spec/gemfile_with_test_group/Gemfile.lock +133 -0
  21. data/spec/gemfile_with_test_group/Mavenfile +5 -0
  22. data/spec/gemfile_with_test_group/pom.xml +504 -0
  23. data/spec/gemfile_without_gemspec/Gemfile +5 -0
  24. data/spec/gemfile_without_gemspec/Mavenfile +5 -0
  25. data/spec/gemfile_without_gemspec/pom.xml +52 -0
  26. data/spec/gemspec/pom.xml +1 -1
  27. data/spec/gemspec_in_profile/pom.xml +1 -1
  28. data/spec/gemspec_include_jars/pom.xml +1 -1
  29. data/spec/gemspec_no_rubygems_repo/pom.xml +1 -1
  30. data/spec/gemspec_prerelease/pom.xml +1 -1
  31. data/spec/gemspec_prerelease_snapshot/pom.xml +1 -1
  32. data/spec/gemspec_with_access_to_model/pom.xml +1 -1
  33. data/spec/gemspec_with_custom_source/pom.xml +2 -2
  34. data/spec/gemspec_with_custom_source_and_custom_jarname/pom.xml +2 -2
  35. data/spec/gemspec_with_extras/pom.xml +1 -1
  36. data/spec/gemspec_with_prereleased_dependency/pom.xml +1 -1
  37. data/spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml +1 -1
  38. data/spec/gemspec_with_source/pom.xml +2 -2
  39. data/spec/gemspec_with_source_and_custom_jarname/pom.xml +2 -2
  40. data/spec/gemspec_with_source_and_no_jar/pom.xml +1 -1
  41. metadata +16 -2
@@ -0,0 +1,5 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ gem 'virtus', :require => false
4
+
5
+ # vim: syntax=Ruby
@@ -0,0 +1,5 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ gemfile
4
+
5
+ # vim: syntax=Ruby
@@ -0,0 +1,52 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ Copyright (c) 2012 to original author or authors
5
+ All rights reserved. This program and the accompanying materials
6
+ are made available under the terms of the Eclipse Public License v1.0
7
+ which accompanies this distribution, and is available at
8
+ http://www.eclipse.org/legal/epl-v10.html
9
+
10
+ -->
11
+ <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
12
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
13
+ <modelVersion>4.0.0</modelVersion>
14
+ <groupId>dummy</groupId>
15
+ <artifactId>gemfile_without_gemspec</artifactId>
16
+ <version>0.0.0</version>
17
+ <name>gemfile_without_gemspec</name>
18
+ <properties>
19
+ <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
20
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
21
+ </properties>
22
+ <dependencies>
23
+ <dependency>
24
+ <groupId>rubygems</groupId>
25
+ <artifactId>virtus</artifactId>
26
+ <version>[0,)</version>
27
+ <type>gem</type>
28
+ </dependency>
29
+ </dependencies>
30
+ <repositories>
31
+ <repository>
32
+ <id>rubygems-releases</id>
33
+ <url>http://rubygems-proxy.torquebox.org/releases</url>
34
+ </repository>
35
+ </repositories>
36
+ <build>
37
+ <plugins>
38
+ <plugin>
39
+ <groupId>de.saumya.mojo</groupId>
40
+ <artifactId>gem-maven-plugin</artifactId>
41
+ <version>${jruby.plugins.version}</version>
42
+ <executions>
43
+ <execution>
44
+ <goals>
45
+ <goal>initialize</goal>
46
+ </goals>
47
+ </execution>
48
+ </executions>
49
+ </plugin>
50
+ </plugins>
51
+ </build>
52
+ </project>
data/spec/gemspec/pom.xml CHANGED
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -32,7 +32,7 @@
32
32
  </build>
33
33
  <properties>
34
34
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
35
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
35
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
36
36
  </properties>
37
37
  <dependencies>
38
38
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  <version_from_model>1.5.0</version_from_model>
35
35
  </properties>
36
36
  <repositories>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -58,7 +58,7 @@
58
58
  <extensions>
59
59
  <extension>
60
60
  <groupId>de.saumya.mojo</groupId>
61
- <artifactId>gem-extension</artifactId>
61
+ <artifactId>gem-with-jar-extension</artifactId>
62
62
  <version>${jruby.plugins.version}</version>
63
63
  </extension>
64
64
  </extensions>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -58,7 +58,7 @@
58
58
  <extensions>
59
59
  <extension>
60
60
  <groupId>de.saumya.mojo</groupId>
61
- <artifactId>gem-extension</artifactId>
61
+ <artifactId>gem-with-jar-extension</artifactId>
62
62
  <version>${jruby.plugins.version}</version>
63
63
  </extension>
64
64
  </extensions>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  <tesla.dump.pom>pom.xml</tesla.dump.pom>
35
35
  <tesla.dump.readonly>true</tesla.dump.readonly>
36
36
  </properties>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -54,7 +54,7 @@
54
54
  <extensions>
55
55
  <extension>
56
56
  <groupId>de.saumya.mojo</groupId>
57
- <artifactId>gem-extension</artifactId>
57
+ <artifactId>gem-with-jar-extension</artifactId>
58
58
  <version>${jruby.plugins.version}</version>
59
59
  </extension>
60
60
  </extensions>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -57,7 +57,7 @@
57
57
  <extensions>
58
58
  <extension>
59
59
  <groupId>de.saumya.mojo</groupId>
60
- <artifactId>gem-extension</artifactId>
60
+ <artifactId>gem-with-jar-extension</artifactId>
61
61
  <version>${jruby.plugins.version}</version>
62
62
  </extension>
63
63
  </extensions>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: maven-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc4
4
+ version: 1.0.0.rc5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Meier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-16 00:00:00.000000000 Z
11
+ date: 2014-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: virtus
@@ -103,6 +103,7 @@ files:
103
103
  - spec/gemfile_with_source/pom.xml
104
104
  - spec/gemspec_in_profile/pom.xml
105
105
  - spec/gemfile_with_lock/pom.xml
106
+ - spec/gemfile_with_test_group/pom.xml
106
107
  - spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml
107
108
  - spec/gemspec_with_custom_source_and_custom_jarname/pom.xml
108
109
  - spec/gemspec_prerelease_snapshot/pom.xml
@@ -125,6 +126,7 @@ files:
125
126
  - spec/gemfile_with_groups/pom.xml
126
127
  - spec/gemfile_with_custom_source/pom.xml
127
128
  - spec/gemspec_with_prereleased_dependency/pom.xml
129
+ - spec/gemfile_without_gemspec/pom.xml
128
130
  - spec/gemfile_with_custom_source_and_custom_jarname/pom.xml
129
131
  - spec/gemspec_include_jars/pom.xml
130
132
  - spec/gemspec_with_extras/pom.xml
@@ -134,6 +136,8 @@ files:
134
136
  - spec/gemspec_in_profile/Mavenfile
135
137
  - spec/gemfile_with_lock/Mavenfile
136
138
  - spec/gemfile_with_lock/Gemfile
139
+ - spec/gemfile_with_test_group/Mavenfile
140
+ - spec/gemfile_with_test_group/Gemfile
137
141
  - spec/gemspec_with_prereleased_dependency_and_no_repo/Mavenfile
138
142
  - spec/gemspec_with_custom_source_and_custom_jarname/Mavenfile
139
143
  - spec/gemspec_prerelease_snapshot/Mavenfile
@@ -165,6 +169,8 @@ files:
165
169
  - spec/gemfile_with_custom_source/Mavenfile
166
170
  - spec/gemfile_with_custom_source/Gemfile
167
171
  - spec/gemspec_with_prereleased_dependency/Mavenfile
172
+ - spec/gemfile_without_gemspec/Mavenfile
173
+ - spec/gemfile_without_gemspec/Gemfile
168
174
  - spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile
169
175
  - spec/gemfile_with_custom_source_and_custom_jarname/Gemfile
170
176
  - spec/gemspec_include_jars/Mavenfile
@@ -173,6 +179,7 @@ files:
173
179
  - spec/gemfile_with_extras/Mavenfile
174
180
  - spec/gemfile_with_extras/Gemfile
175
181
  - spec/gemfile_with_lock/Gemfile.lock
182
+ - spec/gemfile_with_test_group/Gemfile.lock
176
183
  - spec/gemfile_with_groups_and_lockfile/Gemfile.lock
177
184
  - spec/gemfile_with_source/src/main/java/.keep
178
185
  - spec/gemspec_with_custom_source_and_custom_jarname/src/java/.keep
@@ -261,6 +268,7 @@ test_files:
261
268
  - spec/gemfile_with_source/pom.xml
262
269
  - spec/gemspec_in_profile/pom.xml
263
270
  - spec/gemfile_with_lock/pom.xml
271
+ - spec/gemfile_with_test_group/pom.xml
264
272
  - spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml
265
273
  - spec/gemspec_with_custom_source_and_custom_jarname/pom.xml
266
274
  - spec/gemspec_prerelease_snapshot/pom.xml
@@ -283,6 +291,7 @@ test_files:
283
291
  - spec/gemfile_with_groups/pom.xml
284
292
  - spec/gemfile_with_custom_source/pom.xml
285
293
  - spec/gemspec_with_prereleased_dependency/pom.xml
294
+ - spec/gemfile_without_gemspec/pom.xml
286
295
  - spec/gemfile_with_custom_source_and_custom_jarname/pom.xml
287
296
  - spec/gemspec_include_jars/pom.xml
288
297
  - spec/gemspec_with_extras/pom.xml
@@ -292,6 +301,8 @@ test_files:
292
301
  - spec/gemspec_in_profile/Mavenfile
293
302
  - spec/gemfile_with_lock/Mavenfile
294
303
  - spec/gemfile_with_lock/Gemfile
304
+ - spec/gemfile_with_test_group/Mavenfile
305
+ - spec/gemfile_with_test_group/Gemfile
295
306
  - spec/gemspec_with_prereleased_dependency_and_no_repo/Mavenfile
296
307
  - spec/gemspec_with_custom_source_and_custom_jarname/Mavenfile
297
308
  - spec/gemspec_prerelease_snapshot/Mavenfile
@@ -323,6 +334,8 @@ test_files:
323
334
  - spec/gemfile_with_custom_source/Mavenfile
324
335
  - spec/gemfile_with_custom_source/Gemfile
325
336
  - spec/gemspec_with_prereleased_dependency/Mavenfile
337
+ - spec/gemfile_without_gemspec/Mavenfile
338
+ - spec/gemfile_without_gemspec/Gemfile
326
339
  - spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile
327
340
  - spec/gemfile_with_custom_source_and_custom_jarname/Gemfile
328
341
  - spec/gemspec_include_jars/Mavenfile
@@ -331,6 +344,7 @@ test_files:
331
344
  - spec/gemfile_with_extras/Mavenfile
332
345
  - spec/gemfile_with_extras/Gemfile
333
346
  - spec/gemfile_with_lock/Gemfile.lock
347
+ - spec/gemfile_with_test_group/Gemfile.lock
334
348
  - spec/gemfile_with_groups_and_lockfile/Gemfile.lock
335
349
  - spec/gemfile_with_source/src/main/java/.keep
336
350
  - spec/gemspec_with_custom_source_and_custom_jarname/src/java/.keep