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.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/Mavenfile +13 -12
  3. data/lib/maven/tools/dsl.rb +54 -7
  4. data/lib/maven/tools/dsl/gem_support.rb +4 -4
  5. data/lib/maven/tools/dsl/jarfile.rb +8 -1
  6. data/lib/maven/tools/dsl/jarfile_lock.rb +2 -1
  7. data/lib/maven/tools/dsl/profile_gemspec.rb +4 -0
  8. data/lib/maven/tools/dsl/project_gemspec.rb +1 -0
  9. data/lib/maven/tools/model.rb +7 -0
  10. data/lib/maven/tools/version.rb +1 -1
  11. data/lib/maven/tools/versions.rb +5 -5
  12. data/lib/maven/tools/visitor.rb +4 -1
  13. data/spec/dsl/gemspec_spec/jars_and_poms.xml +2 -1
  14. data/spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml +2 -1
  15. data/spec/dsl/gemspec_spec/maven-tools.xml +2 -1
  16. data/spec/dsl/jarfile_lock_spec/Jarfile.legacy.lock +1 -1
  17. data/spec/dsl/jarfile_lock_spec/Jarfile.lock +3 -3
  18. data/spec/dsl/profile_gemspec_spec/jars_and_poms.xml +11 -3
  19. data/spec/dsl/profile_gemspec_spec/jars_and_poms_include_jars.xml +11 -3
  20. data/spec/dsl/profile_gemspec_spec/maven-tools.xml +11 -3
  21. data/spec/dsl/profile_gemspec_spec/no_gems.xml +11 -3
  22. data/spec/dsl/profile_gemspec_spec/snapshot.xml +11 -3
  23. data/spec/dsl/profile_gemspec_spec/unknown_license.xml +11 -3
  24. data/spec/dsl/project_gemspec_spec/extended.xml +9 -3
  25. data/spec/dsl/project_gemspec_spec/jars_and_poms.xml +9 -3
  26. data/spec/dsl/project_gemspec_spec/jars_and_poms_include_jars.xml +9 -3
  27. data/spec/dsl/project_gemspec_spec/maven-tools.xml +9 -3
  28. data/spec/dsl/project_gemspec_spec/no_gems.xml +9 -3
  29. data/spec/dsl/project_gemspec_spec/profile.xml +9 -3
  30. data/spec/dsl/project_gemspec_spec/snapshot.xml +9 -3
  31. data/spec/dsl/project_gemspec_spec/unknown_license.xml +9 -3
  32. data/spec/gemfile/pom.xml +9 -3
  33. data/spec/gemfile_include_jars/pom.xml +9 -3
  34. data/spec/gemfile_with_access_to_model/pom.xml +9 -3
  35. data/spec/gemfile_with_custom_source/Mavenfile +1 -1
  36. data/spec/gemfile_with_custom_source/pom.xml +9 -3
  37. data/spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile +1 -1
  38. data/spec/gemfile_with_custom_source_and_custom_jarname/pom.xml +9 -3
  39. data/spec/gemfile_with_extras/pom.xml +9 -3
  40. data/spec/gemfile_with_groups/pom.xml +11 -3
  41. data/spec/gemfile_with_groups_and_lockfile/pom.xml +13 -5
  42. data/spec/gemfile_with_jars_lock/pom.xml +11 -3
  43. data/spec/gemfile_with_lock/Gemfile +1 -0
  44. data/spec/gemfile_with_lock/Gemfile.lock +1 -1
  45. data/spec/gemfile_with_lock/pom.xml +13 -7
  46. data/spec/gemfile_with_path/pom.xml +11 -3
  47. data/spec/gemfile_with_platforms/pom.xml +11 -3
  48. data/spec/gemfile_with_source/Gemfile +3 -0
  49. data/spec/gemfile_with_source/Mavenfile +1 -1
  50. data/spec/gemfile_with_source/pom.xml +9 -3
  51. data/spec/gemfile_with_source_and_custom_jarname/Mavenfile +1 -1
  52. data/spec/gemfile_with_source_and_custom_jarname/pom.xml +9 -3
  53. data/spec/gemfile_with_source_and_no_jar/Mavenfile +1 -1
  54. data/spec/gemfile_with_source_and_no_jar/pom.xml +9 -3
  55. data/spec/gemfile_with_test_group/pom.xml +21 -13
  56. data/spec/gemfile_with_two_sources/Gemfile +6 -0
  57. data/spec/gemfile_with_two_sources/Mavenfile +5 -0
  58. data/spec/gemfile_with_two_sources/pom.xml +58 -0
  59. data/spec/gemfile_without_gemspec/pom.xml +11 -3
  60. data/spec/gemspec/pom.xml +9 -3
  61. data/spec/gemspec_in_profile/pom.xml +13 -3
  62. data/spec/gemspec_include_jars/pom.xml +9 -3
  63. data/spec/gemspec_no_rubygems_repo/pom.xml +7 -1
  64. data/spec/gemspec_prerelease/pom.xml +9 -3
  65. data/spec/gemspec_prerelease_snapshot/pom.xml +9 -3
  66. data/spec/gemspec_with_access_to_model/pom.xml +9 -3
  67. data/spec/gemspec_with_custom_source/pom.xml +9 -3
  68. data/spec/gemspec_with_custom_source_and_custom_jarname/pom.xml +9 -3
  69. data/spec/gemspec_with_extras/pom.xml +9 -3
  70. data/spec/gemspec_with_jar_dependencies/pom.xml +9 -3
  71. data/spec/gemspec_with_jars_lock/pom.xml +9 -3
  72. data/spec/gemspec_with_prereleased_dependency/pom.xml +9 -3
  73. data/spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml +7 -1
  74. data/spec/gemspec_with_source/pom.xml +9 -3
  75. data/spec/gemspec_with_source_and_custom_jarname/pom.xml +9 -3
  76. data/spec/gemspec_with_source_and_no_jar/pom.xml +9 -3
  77. data/spec/mavenfile/Mavenfile +9 -9
  78. data/spec/mavenfile_jrubyJar/pom.xml +2 -2
  79. data/spec/mavenfile_jrubyWar/pom.xml +2 -2
  80. data/spec/pom.xml +3 -1
  81. data/spec/pom_from_jarfile/pom.xml +1 -1
  82. data/spec/pom_maven_alternative_style/pom.rb +3 -1
  83. data/spec/pom_maven_hash_style/pom.rb +3 -1
  84. data/spec/pom_maven_style/pom.rb +3 -1
  85. data/spec/pom_spec.rb +1 -1
  86. data/spec/pom_with_execute/pom.xml +2 -2
  87. metadata +19 -11
@@ -6,7 +6,8 @@
6
6
  <name>BASEDIR</name>
7
7
  <properties>
8
8
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
9
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
9
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
10
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
10
11
  </properties>
11
12
  <dependencies>
12
13
  <dependency>
@@ -32,11 +33,18 @@
32
33
  </dependencies>
33
34
  <repositories>
34
35
  <repository>
35
- <id>rubygems-releases</id>
36
- <url>http://rubygems-proxy.torquebox.org/releases</url>
36
+ <id>mavengems</id>
37
+ <url>mavengem:https://rubygems.org</url>
37
38
  </repository>
38
39
  </repositories>
39
40
  <build>
41
+ <extensions>
42
+ <extension>
43
+ <groupId>org.torquebox.mojo</groupId>
44
+ <artifactId>mavengem-wagon</artifactId>
45
+ <version>${mavengem.wagon.version}</version>
46
+ </extension>
47
+ </extensions>
40
48
  <plugins>
41
49
  <plugin>
42
50
  <groupId>de.saumya.mojo</groupId>
@@ -6,15 +6,23 @@
6
6
  <name>profile_gemspec_spec</name>
7
7
  <properties>
8
8
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
9
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
9
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
10
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
10
11
  </properties>
11
12
  <repositories>
12
13
  <repository>
13
- <id>rubygems-releases</id>
14
- <url>http://rubygems-proxy.torquebox.org/releases</url>
14
+ <id>mavengems</id>
15
+ <url>mavengem:https://rubygems.org</url>
15
16
  </repository>
16
17
  </repositories>
17
18
  <build>
19
+ <extensions>
20
+ <extension>
21
+ <groupId>org.torquebox.mojo</groupId>
22
+ <artifactId>mavengem-wagon</artifactId>
23
+ <version>${mavengem.wagon.version}</version>
24
+ </extension>
25
+ </extensions>
18
26
  <plugins>
19
27
  <plugin>
20
28
  <groupId>de.saumya.mojo</groupId>
@@ -6,15 +6,23 @@
6
6
  <name>profile_gemspec_spec</name>
7
7
  <properties>
8
8
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
9
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
9
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
10
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
10
11
  </properties>
11
12
  <repositories>
12
13
  <repository>
13
- <id>rubygems-releases</id>
14
- <url>http://rubygems-proxy.torquebox.org/releases</url>
14
+ <id>mavengems</id>
15
+ <url>mavengem:https://rubygems.org</url>
15
16
  </repository>
16
17
  </repositories>
17
18
  <build>
19
+ <extensions>
20
+ <extension>
21
+ <groupId>org.torquebox.mojo</groupId>
22
+ <artifactId>mavengem-wagon</artifactId>
23
+ <version>${mavengem.wagon.version}</version>
24
+ </extension>
25
+ </extensions>
18
26
  <plugins>
19
27
  <plugin>
20
28
  <groupId>de.saumya.mojo</groupId>
@@ -6,15 +6,23 @@
6
6
  <name>profile_gemspec_spec</name>
7
7
  <properties>
8
8
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
9
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
9
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
10
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
10
11
  </properties>
11
12
  <repositories>
12
13
  <repository>
13
- <id>rubygems-releases</id>
14
- <url>http://rubygems-proxy.torquebox.org/releases</url>
14
+ <id>mavengems</id>
15
+ <url>mavengem:https://rubygems.org</url>
15
16
  </repository>
16
17
  </repositories>
17
18
  <build>
19
+ <extensions>
20
+ <extension>
21
+ <groupId>org.torquebox.mojo</groupId>
22
+ <artifactId>mavengem-wagon</artifactId>
23
+ <version>${mavengem.wagon.version}</version>
24
+ </extension>
25
+ </extensions>
18
26
  <plugins>
19
27
  <plugin>
20
28
  <groupId>de.saumya.mojo</groupId>
@@ -26,7 +26,8 @@
26
26
  </scm>
27
27
  <properties>
28
28
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
29
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
29
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
30
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
30
31
  </properties>
31
32
  <dependencies>
32
33
  <dependency>
@@ -55,8 +56,8 @@
55
56
  </dependencies>
56
57
  <repositories>
57
58
  <repository>
58
- <id>rubygems-releases</id>
59
- <url>http://rubygems-proxy.torquebox.org/releases</url>
59
+ <id>mavengems</id>
60
+ <url>mavengem:https://rubygems.org</url>
60
61
  </repository>
61
62
  <repository>
62
63
  <id>http://localhost/repo</id>
@@ -65,6 +66,11 @@
65
66
  </repositories>
66
67
  <build>
67
68
  <extensions>
69
+ <extension>
70
+ <groupId>org.torquebox.mojo</groupId>
71
+ <artifactId>mavengem-wagon</artifactId>
72
+ <version>${mavengem.wagon.version}</version>
73
+ </extension>
68
74
  <extension>
69
75
  <groupId>de.saumya.mojo</groupId>
70
76
  <artifactId>gem-extension</artifactId>
@@ -26,7 +26,8 @@
26
26
  </scm>
27
27
  <properties>
28
28
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
29
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
29
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
30
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
30
31
  </properties>
31
32
  <dependencies>
32
33
  <dependency>
@@ -55,12 +56,17 @@
55
56
  </dependencies>
56
57
  <repositories>
57
58
  <repository>
58
- <id>rubygems-releases</id>
59
- <url>http://rubygems-proxy.torquebox.org/releases</url>
59
+ <id>mavengems</id>
60
+ <url>mavengem:https://rubygems.org</url>
60
61
  </repository>
61
62
  </repositories>
62
63
  <build>
63
64
  <extensions>
65
+ <extension>
66
+ <groupId>org.torquebox.mojo</groupId>
67
+ <artifactId>mavengem-wagon</artifactId>
68
+ <version>${mavengem.wagon.version}</version>
69
+ </extension>
64
70
  <extension>
65
71
  <groupId>de.saumya.mojo</groupId>
66
72
  <artifactId>gem-extension</artifactId>
@@ -26,7 +26,8 @@
26
26
  </scm>
27
27
  <properties>
28
28
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
29
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
29
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
30
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
30
31
  </properties>
31
32
  <dependencies>
32
33
  <dependency>
@@ -55,12 +56,17 @@
55
56
  </dependencies>
56
57
  <repositories>
57
58
  <repository>
58
- <id>rubygems-releases</id>
59
- <url>http://rubygems-proxy.torquebox.org/releases</url>
59
+ <id>mavengems</id>
60
+ <url>mavengem:https://rubygems.org</url>
60
61
  </repository>
61
62
  </repositories>
62
63
  <build>
63
64
  <extensions>
65
+ <extension>
66
+ <groupId>org.torquebox.mojo</groupId>
67
+ <artifactId>mavengem-wagon</artifactId>
68
+ <version>${mavengem.wagon.version}</version>
69
+ </extension>
64
70
  <extension>
65
71
  <groupId>de.saumya.mojo</groupId>
66
72
  <artifactId>gem-extension</artifactId>
@@ -26,7 +26,8 @@
26
26
  </scm>
27
27
  <properties>
28
28
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
29
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
29
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
30
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
30
31
  </properties>
31
32
  <dependencies>
32
33
  <dependency>
@@ -52,12 +53,17 @@
52
53
  </dependencies>
53
54
  <repositories>
54
55
  <repository>
55
- <id>rubygems-releases</id>
56
- <url>http://rubygems-proxy.torquebox.org/releases</url>
56
+ <id>mavengems</id>
57
+ <url>mavengem:https://rubygems.org</url>
57
58
  </repository>
58
59
  </repositories>
59
60
  <build>
60
61
  <extensions>
62
+ <extension>
63
+ <groupId>org.torquebox.mojo</groupId>
64
+ <artifactId>mavengem-wagon</artifactId>
65
+ <version>${mavengem.wagon.version}</version>
66
+ </extension>
61
67
  <extension>
62
68
  <groupId>de.saumya.mojo</groupId>
63
69
  <artifactId>gem-extension</artifactId>
@@ -26,16 +26,22 @@
26
26
  </scm>
27
27
  <properties>
28
28
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
29
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
29
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
30
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
30
31
  </properties>
31
32
  <repositories>
32
33
  <repository>
33
- <id>rubygems-releases</id>
34
- <url>http://rubygems-proxy.torquebox.org/releases</url>
34
+ <id>mavengems</id>
35
+ <url>mavengem:https://rubygems.org</url>
35
36
  </repository>
36
37
  </repositories>
37
38
  <build>
38
39
  <extensions>
40
+ <extension>
41
+ <groupId>org.torquebox.mojo</groupId>
42
+ <artifactId>mavengem-wagon</artifactId>
43
+ <version>${mavengem.wagon.version}</version>
44
+ </extension>
39
45
  <extension>
40
46
  <groupId>de.saumya.mojo</groupId>
41
47
  <artifactId>gem-extension</artifactId>
@@ -26,16 +26,22 @@
26
26
  </scm>
27
27
  <properties>
28
28
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
29
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
29
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
30
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
30
31
  </properties>
31
32
  <repositories>
32
33
  <repository>
33
- <id>rubygems-releases</id>
34
- <url>http://rubygems-proxy.torquebox.org/releases</url>
34
+ <id>mavengems</id>
35
+ <url>mavengem:https://rubygems.org</url>
35
36
  </repository>
36
37
  </repositories>
37
38
  <build>
38
39
  <extensions>
40
+ <extension>
41
+ <groupId>org.torquebox.mojo</groupId>
42
+ <artifactId>mavengem-wagon</artifactId>
43
+ <version>${mavengem.wagon.version}</version>
44
+ </extension>
39
45
  <extension>
40
46
  <groupId>de.saumya.mojo</groupId>
41
47
  <artifactId>gem-extension</artifactId>
@@ -26,16 +26,22 @@
26
26
  </scm>
27
27
  <properties>
28
28
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
29
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
29
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
30
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
30
31
  </properties>
31
32
  <repositories>
32
33
  <repository>
33
- <id>rubygems-releases</id>
34
- <url>http://rubygems-proxy.torquebox.org/releases</url>
34
+ <id>mavengems</id>
35
+ <url>mavengem:https://rubygems.org</url>
35
36
  </repository>
36
37
  </repositories>
37
38
  <build>
38
39
  <extensions>
40
+ <extension>
41
+ <groupId>org.torquebox.mojo</groupId>
42
+ <artifactId>mavengem-wagon</artifactId>
43
+ <version>${mavengem.wagon.version}</version>
44
+ </extension>
39
45
  <extension>
40
46
  <groupId>de.saumya.mojo</groupId>
41
47
  <artifactId>gem-extension</artifactId>
@@ -24,16 +24,22 @@
24
24
  </scm>
25
25
  <properties>
26
26
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
27
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
27
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
28
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
28
29
  </properties>
29
30
  <repositories>
30
31
  <repository>
31
- <id>rubygems-releases</id>
32
- <url>http://rubygems-proxy.torquebox.org/releases</url>
32
+ <id>mavengems</id>
33
+ <url>mavengem:https://rubygems.org</url>
33
34
  </repository>
34
35
  </repositories>
35
36
  <build>
36
37
  <extensions>
38
+ <extension>
39
+ <groupId>org.torquebox.mojo</groupId>
40
+ <artifactId>mavengem-wagon</artifactId>
41
+ <version>${mavengem.wagon.version}</version>
42
+ </extension>
37
43
  <extension>
38
44
  <groupId>de.saumya.mojo</groupId>
39
45
  <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.2</jruby.plugins.version>
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>
@@ -52,12 +53,17 @@
52
53
  </dependencies>
53
54
  <repositories>
54
55
  <repository>
55
- <id>rubygems-releases</id>
56
- <url>http://rubygems-proxy.torquebox.org/releases</url>
56
+ <id>mavengems</id>
57
+ <url>mavengem:https://rubygems.org</url>
57
58
  </repository>
58
59
  </repositories>
59
60
  <build>
60
61
  <extensions>
62
+ <extension>
63
+ <groupId>org.torquebox.mojo</groupId>
64
+ <artifactId>mavengem-wagon</artifactId>
65
+ <version>${mavengem.wagon.version}</version>
66
+ </extension>
61
67
  <extension>
62
68
  <groupId>de.saumya.mojo</groupId>
63
69
  <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.2</jruby.plugins.version>
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>rubygems-releases</id>
50
- <url>http://rubygems-proxy.torquebox.org/releases</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-extension</artifactId>
@@ -30,17 +30,23 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
34
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
34
35
  <version_from_model>1.5.0</version_from_model>
35
36
  </properties>
36
37
  <repositories>
37
38
  <repository>
38
- <id>rubygems-releases</id>
39
- <url>http://rubygems-proxy.torquebox.org/releases</url>
39
+ <id>mavengems</id>
40
+ <url>mavengem:https://rubygems.org</url>
40
41
  </repository>
41
42
  </repositories>
42
43
  <build>
43
44
  <extensions>
45
+ <extension>
46
+ <groupId>org.torquebox.mojo</groupId>
47
+ <artifactId>mavengem-wagon</artifactId>
48
+ <version>${mavengem.wagon.version}</version>
49
+ </extension>
44
50
  <extension>
45
51
  <groupId>de.saumya.mojo</groupId>
46
52
  <artifactId>gem-extension</artifactId>
@@ -1,5 +1,5 @@
1
1
  #-*- mode: ruby -*-
2
2
 
3
- gemspec :source => 'src/java'
3
+ gemfile :source => 'src/java'
4
4
 
5
5
  # vim: syntax=Ruby
@@ -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.2</jruby.plugins.version>
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,13 +50,18 @@
49
50
  </dependencies>
50
51
  <repositories>
51
52
  <repository>
52
- <id>rubygems-releases</id>
53
- <url>http://rubygems-proxy.torquebox.org/releases</url>
53
+ <id>mavengems</id>
54
+ <url>mavengem:https://rubygems.org</url>
54
55
  </repository>
55
56
  </repositories>
56
57
  <build>
57
58
  <sourceDirectory>src/java</sourceDirectory>
58
59
  <extensions>
60
+ <extension>
61
+ <groupId>org.torquebox.mojo</groupId>
62
+ <artifactId>mavengem-wagon</artifactId>
63
+ <version>${mavengem.wagon.version}</version>
64
+ </extension>
59
65
  <extension>
60
66
  <groupId>de.saumya.mojo</groupId>
61
67
  <artifactId>gem-with-jar-extension</artifactId>