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
@@ -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.
|
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>
|
36
|
-
<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.
|
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>
|
14
|
-
<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.
|
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>
|
14
|
-
<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.
|
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>
|
14
|
-
<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.
|
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>
|
59
|
-
<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.
|
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>
|
59
|
-
<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.
|
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>
|
59
|
-
<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.
|
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>
|
56
|
-
<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.
|
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>
|
34
|
-
<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.
|
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>
|
34
|
-
<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.
|
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>
|
34
|
-
<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.
|
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>
|
32
|
-
<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>
|
data/spec/gemfile/pom.xml
CHANGED
@@ -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>
|
@@ -52,12 +53,17 @@
|
|
52
53
|
</dependencies>
|
53
54
|
<repositories>
|
54
55
|
<repository>
|
55
|
-
<id>
|
56
|
-
<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.
|
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-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.
|
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>
|
39
|
-
<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.
|
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>
|
53
|
-
<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>
|