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
@@ -0,0 +1,6 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ source 'https://rubygems.org'
4
+ source 'http://github.com/rubygems'
5
+
6
+ # vim: syntax=Ruby
@@ -0,0 +1,5 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ gemfile
4
+
5
+ # vim: syntax=Ruby
@@ -0,0 +1,58 @@
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>no_group_id_given</groupId>
15
+ <artifactId>gemfile_with_two_sources</artifactId>
16
+ <version>0.0.0</version>
17
+ <name>gemfile_with_two_sources</name>
18
+ <properties>
19
+ <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
20
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
21
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
22
+ </properties>
23
+ <repositories>
24
+ <repository>
25
+ <id>mavengems</id>
26
+ <url>mavengem:https://rubygems.org</url>
27
+ </repository>
28
+ <repository>
29
+ <id>http_github.com_rubygems</id>
30
+ <url>mavengem:http://github.com/rubygems</url>
31
+ </repository>
32
+ </repositories>
33
+ <build>
34
+ <extensions>
35
+ <extension>
36
+ <groupId>org.torquebox.mojo</groupId>
37
+ <artifactId>mavengem-wagon</artifactId>
38
+ <version>${mavengem.wagon.version}</version>
39
+ </extension>
40
+ </extensions>
41
+ <directory>${basedir}/pkg</directory>
42
+ <plugins>
43
+ <plugin>
44
+ <groupId>de.saumya.mojo</groupId>
45
+ <artifactId>gem-maven-plugin</artifactId>
46
+ <version>${jruby.plugins.version}</version>
47
+ <executions>
48
+ <execution>
49
+ <id>install gems</id>
50
+ <goals>
51
+ <goal>initialize</goal>
52
+ </goals>
53
+ </execution>
54
+ </executions>
55
+ </plugin>
56
+ </plugins>
57
+ </build>
58
+ </project>
@@ -17,7 +17,8 @@
17
17
  <name>gemfile_without_gemspec</name>
18
18
  <properties>
19
19
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
20
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
20
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
21
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
21
22
  </properties>
22
23
  <dependencies>
23
24
  <dependency>
@@ -29,11 +30,18 @@
29
30
  </dependencies>
30
31
  <repositories>
31
32
  <repository>
32
- <id>rubygems-releases</id>
33
- <url>http://rubygems-proxy.torquebox.org/releases</url>
33
+ <id>mavengems</id>
34
+ <url>mavengem:https://rubygems.org</url>
34
35
  </repository>
35
36
  </repositories>
36
37
  <build>
38
+ <extensions>
39
+ <extension>
40
+ <groupId>org.torquebox.mojo</groupId>
41
+ <artifactId>mavengem-wagon</artifactId>
42
+ <version>${mavengem.wagon.version}</version>
43
+ </extension>
44
+ </extensions>
37
45
  <directory>${basedir}/pkg</directory>
38
46
  <plugins>
39
47
  <plugin>
@@ -47,7 +47,8 @@
47
47
  </scm>
48
48
  <properties>
49
49
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
50
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
50
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
51
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
51
52
  </properties>
52
53
  <dependencies>
53
54
  <dependency>
@@ -63,12 +64,17 @@
63
64
  </dependencies>
64
65
  <repositories>
65
66
  <repository>
66
- <id>rubygems-releases</id>
67
- <url>http://rubygems-proxy.torquebox.org/releases</url>
67
+ <id>mavengems</id>
68
+ <url>mavengem:https://rubygems.org</url>
68
69
  </repository>
69
70
  </repositories>
70
71
  <build>
71
72
  <extensions>
73
+ <extension>
74
+ <groupId>org.torquebox.mojo</groupId>
75
+ <artifactId>mavengem-wagon</artifactId>
76
+ <version>${mavengem.wagon.version}</version>
77
+ </extension>
72
78
  <extension>
73
79
  <groupId>de.saumya.mojo</groupId>
74
80
  <artifactId>gem-extension</artifactId>
@@ -15,6 +15,15 @@
15
15
  <artifactId>gemspec_in_profile</artifactId>
16
16
  <version>0.0.0</version>
17
17
  <name>gemspec_in_profile</name>
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>
26
+ </build>
18
27
  <profiles>
19
28
  <profile>
20
29
  <id>gem</id>
@@ -32,7 +41,8 @@
32
41
  </build>
33
42
  <properties>
34
43
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
35
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
44
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
45
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
36
46
  </properties>
37
47
  <dependencies>
38
48
  <dependency>
@@ -48,8 +58,8 @@
48
58
  </dependencies>
49
59
  <repositories>
50
60
  <repository>
51
- <id>rubygems-releases</id>
52
- <url>http://rubygems-proxy.torquebox.org/releases</url>
61
+ <id>mavengems</id>
62
+ <url>mavengem:https://rubygems.org</url>
53
63
  </repository>
54
64
  </repositories>
55
65
  </profile>
@@ -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,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>
@@ -43,6 +44,11 @@
43
44
  </dependencies>
44
45
  <build>
45
46
  <extensions>
47
+ <extension>
48
+ <groupId>org.torquebox.mojo</groupId>
49
+ <artifactId>mavengem-wagon</artifactId>
50
+ <version>${mavengem.wagon.version}</version>
51
+ </extension>
46
52
  <extension>
47
53
  <groupId>de.saumya.mojo</groupId>
48
54
  <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>
@@ -43,12 +44,17 @@
43
44
  </dependencies>
44
45
  <repositories>
45
46
  <repository>
46
- <id>rubygems-releases</id>
47
- <url>http://rubygems-proxy.torquebox.org/releases</url>
47
+ <id>mavengems</id>
48
+ <url>mavengem:https://rubygems.org</url>
48
49
  </repository>
49
50
  </repositories>
50
51
  <build>
51
52
  <extensions>
53
+ <extension>
54
+ <groupId>org.torquebox.mojo</groupId>
55
+ <artifactId>mavengem-wagon</artifactId>
56
+ <version>${mavengem.wagon.version}</version>
57
+ </extension>
52
58
  <extension>
53
59
  <groupId>de.saumya.mojo</groupId>
54
60
  <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>
@@ -43,12 +44,17 @@
43
44
  </dependencies>
44
45
  <repositories>
45
46
  <repository>
46
- <id>rubygems-releases</id>
47
- <url>http://rubygems-proxy.torquebox.org/releases</url>
47
+ <id>mavengems</id>
48
+ <url>mavengem:https://rubygems.org</url>
48
49
  </repository>
49
50
  </repositories>
50
51
  <build>
51
52
  <extensions>
53
+ <extension>
54
+ <groupId>org.torquebox.mojo</groupId>
55
+ <artifactId>mavengem-wagon</artifactId>
56
+ <version>${mavengem.wagon.version}</version>
57
+ </extension>
52
58
  <extension>
53
59
  <groupId>de.saumya.mojo</groupId>
54
60
  <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>
@@ -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>
@@ -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>
@@ -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
  <tesla.dump.pom>pom.xml</tesla.dump.pom>
35
36
  <tesla.dump.readonly>true</tesla.dump.readonly>
36
37
  </properties>
@@ -48,12 +49,17 @@
48
49
  </dependencies>
49
50
  <repositories>
50
51
  <repository>
51
- <id>rubygems-releases</id>
52
- <url>http://rubygems-proxy.torquebox.org/releases</url>
52
+ <id>mavengems</id>
53
+ <url>mavengem:https://rubygems.org</url>
53
54
  </repository>
54
55
  </repositories>
55
56
  <build>
56
57
  <extensions>
58
+ <extension>
59
+ <groupId>org.torquebox.mojo</groupId>
60
+ <artifactId>mavengem-wagon</artifactId>
61
+ <version>${mavengem.wagon.version}</version>
62
+ </extension>
57
63
  <extension>
58
64
  <groupId>de.saumya.mojo</groupId>
59
65
  <artifactId>gem-extension</artifactId>
@@ -47,7 +47,8 @@
47
47
  </scm>
48
48
  <properties>
49
49
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
50
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
50
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
51
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
51
52
  </properties>
52
53
  <dependencies>
53
54
  <dependency>
@@ -64,12 +65,17 @@
64
65
  </dependencies>
65
66
  <repositories>
66
67
  <repository>
67
- <id>rubygems-releases</id>
68
- <url>http://rubygems-proxy.torquebox.org/releases</url>
68
+ <id>mavengems</id>
69
+ <url>mavengem:https://rubygems.org</url>
69
70
  </repository>
70
71
  </repositories>
71
72
  <build>
72
73
  <extensions>
74
+ <extension>
75
+ <groupId>org.torquebox.mojo</groupId>
76
+ <artifactId>mavengem-wagon</artifactId>
77
+ <version>${mavengem.wagon.version}</version>
78
+ </extension>
73
79
  <extension>
74
80
  <groupId>de.saumya.mojo</groupId>
75
81
  <artifactId>gem-extension</artifactId>
@@ -47,7 +47,8 @@
47
47
  </scm>
48
48
  <properties>
49
49
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
50
- <jruby.plugins.version>1.1.2</jruby.plugins.version>
50
+ <jruby.plugins.version>1.1.4</jruby.plugins.version>
51
+ <mavengem.wagon.version>0.2.0</mavengem.wagon.version>
51
52
  </properties>
52
53
  <dependencies>
53
54
  <dependency>
@@ -58,12 +59,17 @@
58
59
  </dependencies>
59
60
  <repositories>
60
61
  <repository>
61
- <id>rubygems-releases</id>
62
- <url>http://rubygems-proxy.torquebox.org/releases</url>
62
+ <id>mavengems</id>
63
+ <url>mavengem:https://rubygems.org</url>
63
64
  </repository>
64
65
  </repositories>
65
66
  <build>
66
67
  <extensions>
68
+ <extension>
69
+ <groupId>org.torquebox.mojo</groupId>
70
+ <artifactId>mavengem-wagon</artifactId>
71
+ <version>${mavengem.wagon.version}</version>
72
+ </extension>
67
73
  <extension>
68
74
  <groupId>de.saumya.mojo</groupId>
69
75
  <artifactId>gem-extension</artifactId>