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
@@ -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.
|
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>
|
33
|
-
<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>
|
data/spec/gemspec/pom.xml
CHANGED
@@ -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.
|
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>
|
67
|
-
<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.
|
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>
|
52
|
-
<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.
|
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,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,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.
|
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>
|
47
|
-
<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.
|
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>
|
47
|
-
<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.
|
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>
|
@@ -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>
|
@@ -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
|
<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>
|
52
|
-
<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.
|
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>
|
68
|
-
<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.
|
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>
|
62
|
-
<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>
|