maven-tools 1.0.0.rc2 → 1.0.0.rc3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +8 -0
- data/Mavenfile +22 -0
- data/Rakefile +44 -0
- data/lib/maven/tools/coordinate.rb +6 -1
- data/lib/maven/tools/dsl.rb +116 -42
- data/lib/maven/tools/model.rb +336 -334
- data/lib/maven/tools/pom.rb +4 -5
- data/lib/maven/tools/version.rb +1 -1
- data/lib/maven/tools/versions.rb +4 -7
- data/lib/maven/tools/visitor.rb +22 -7
- data/maven-tools.gemspec +39 -0
- data/spec/artifact_spec.rb +30 -10
- data/spec/coordinate_spec.rb +1 -1
- data/spec/gemfile/Gemfile +7 -0
- data/spec/gemfile/Mavenfile +5 -0
- data/spec/gemfile/bouncy-castle-java.gemspec +20 -0
- data/spec/gemfile/pom.xml +79 -0
- data/spec/gemfile_include_jars/Gemfile +5 -0
- data/spec/gemfile_include_jars/Mavenfile +5 -0
- data/spec/gemfile_include_jars/bouncy-castle-java.gemspec +20 -0
- data/spec/gemfile_include_jars/pom.xml +74 -0
- data/spec/gemfile_with_access_to_model/Gemfile +5 -0
- data/spec/gemfile_with_access_to_model/Mavenfile +7 -0
- data/spec/gemfile_with_access_to_model/bouncy-castle-java.gemspec +16 -0
- data/spec/gemfile_with_access_to_model/pom.xml +62 -0
- data/spec/gemfile_with_custom_source/Gemfile +5 -0
- data/spec/gemfile_with_custom_source/Mavenfile +5 -0
- data/spec/gemfile_with_custom_source/bouncy-castle-java.gemspec +19 -0
- data/spec/gemfile_with_custom_source/pom.xml +107 -0
- data/spec/gemfile_with_custom_source/src/java/.keep +0 -0
- data/spec/gemfile_with_custom_source_and_custom_jarname/Gemfile +5 -0
- data/spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile +5 -0
- data/spec/gemfile_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec +18 -0
- data/spec/gemfile_with_custom_source_and_custom_jarname/pom.xml +107 -0
- data/spec/gemfile_with_custom_source_and_custom_jarname/src/java/.keep +0 -0
- data/spec/gemfile_with_extras/Gemfile +5 -0
- data/spec/gemfile_with_extras/Mavenfile +21 -0
- data/spec/gemfile_with_extras/bouncy-castle-java.gemspec +20 -0
- data/spec/gemfile_with_extras/pom.xml +106 -0
- data/spec/gemfile_with_groups/Gemfile +9 -0
- data/spec/gemfile_with_groups/Mavenfile +5 -0
- data/spec/gemfile_with_groups/pom.xml +44 -0
- data/spec/gemfile_with_groups_and_lockfile/Gemfile +10 -0
- data/spec/gemfile_with_groups_and_lockfile/Gemfile.lock +34 -0
- data/spec/gemfile_with_groups_and_lockfile/Mavenfile +5 -0
- data/spec/gemfile_with_groups_and_lockfile/pom.xml +155 -0
- data/spec/gemfile_with_lock/Gemfile +7 -0
- data/spec/gemfile_with_lock/Gemfile.lock +42 -0
- data/spec/gemfile_with_lock/Mavenfile +5 -0
- data/spec/gemfile_with_lock/bouncy-castle-java.gemspec +22 -0
- data/spec/gemfile_with_lock/pom.xml +197 -0
- data/spec/gemfile_with_path/Gemfile +7 -0
- data/spec/gemfile_with_path/Mavenfile +5 -0
- data/spec/gemfile_with_path/pom.xml +63 -0
- data/spec/gemfile_with_source/Mavenfile +5 -0
- data/spec/gemfile_with_source/bouncy-castle-java.gemspec +21 -0
- data/spec/gemfile_with_source/pom.xml +103 -0
- data/spec/gemfile_with_source/src/main/java/.keep +0 -0
- data/spec/gemfile_with_source_and_custom_jarname/Gemfile +5 -0
- data/spec/gemfile_with_source_and_custom_jarname/Mavenfile +5 -0
- data/spec/gemfile_with_source_and_custom_jarname/bouncy-castle-java.gemspec +19 -0
- data/spec/gemfile_with_source_and_custom_jarname/pom.xml +106 -0
- data/spec/gemfile_with_source_and_custom_jarname/src/main/java/.keep +0 -0
- data/spec/gemfile_with_source_and_no_jar/Gemfile +5 -0
- data/spec/gemfile_with_source_and_no_jar/Mavenfile +5 -0
- data/spec/gemfile_with_source_and_no_jar/bouncy-castle-java.gemspec +19 -0
- data/spec/gemfile_with_source_and_no_jar/pom.xml +76 -0
- data/spec/gemfile_with_source_and_no_jar/src/main/java/.keep +0 -0
- data/spec/gemspec/Mavenfile +5 -0
- data/spec/gemspec/bouncy-castle-java.gemspec +20 -0
- data/spec/gemspec/pom.xml +73 -0
- data/spec/gemspec_in_profile/Mavenfile +7 -0
- data/spec/gemspec_in_profile/bouncy-castle-java.gemspec +20 -0
- data/spec/gemspec_in_profile/pom.xml +57 -0
- data/spec/gemspec_include_jars/Mavenfile +5 -0
- data/spec/gemspec_include_jars/bouncy-castle-java.gemspec +20 -0
- data/spec/gemspec_include_jars/pom.xml +74 -0
- data/spec/gemspec_no_rubygems_repo/Mavenfile +5 -0
- data/spec/gemspec_no_rubygems_repo/bouncy-castle-java.gemspec +17 -0
- data/spec/gemspec_no_rubygems_repo/pom.xml +64 -0
- data/spec/gemspec_prerelease/Mavenfile +5 -0
- data/spec/gemspec_prerelease/bouncy-castle-java.gemspec +17 -0
- data/spec/gemspec_prerelease/pom.xml +70 -0
- data/spec/gemspec_prerelease_snapshot/Mavenfile +5 -0
- data/spec/gemspec_prerelease_snapshot/bouncy-castle-java.gemspec +17 -0
- data/spec/gemspec_prerelease_snapshot/pom.xml +70 -0
- data/spec/gemspec_with_access_to_model/Mavenfile +7 -0
- data/spec/gemspec_with_access_to_model/bouncy-castle-java.gemspec +16 -0
- data/spec/gemspec_with_access_to_model/pom.xml +62 -0
- data/spec/gemspec_with_custom_source/Mavenfile +5 -0
- data/spec/gemspec_with_custom_source/bouncy-castle-java.gemspec +19 -0
- data/spec/gemspec_with_custom_source/pom.xml +107 -0
- data/spec/gemspec_with_custom_source/src/java/.keep +0 -0
- data/spec/gemspec_with_custom_source_and_custom_jarname/Mavenfile +5 -0
- data/spec/gemspec_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec +18 -0
- data/spec/gemspec_with_custom_source_and_custom_jarname/pom.xml +107 -0
- data/spec/gemspec_with_custom_source_and_custom_jarname/src/java/.keep +0 -0
- data/spec/gemspec_with_extras/Mavenfile +21 -0
- data/spec/gemspec_with_extras/bouncy-castle-java.gemspec +20 -0
- data/spec/gemspec_with_extras/pom.xml +106 -0
- data/spec/gemspec_with_prereleased_dependency/Mavenfile +5 -0
- data/spec/gemspec_with_prereleased_dependency/bouncy-castle-java.gemspec +17 -0
- data/spec/gemspec_with_prereleased_dependency/pom.xml +80 -0
- data/spec/gemspec_with_prereleased_dependency_and_no_repo/Mavenfile +5 -0
- data/spec/gemspec_with_prereleased_dependency_and_no_repo/bouncy-castle-java.gemspec +17 -0
- data/spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml +76 -0
- data/spec/gemspec_with_source/Mavenfile +5 -0
- data/spec/gemspec_with_source/bouncy-castle-java.gemspec +21 -0
- data/spec/gemspec_with_source/pom.xml +103 -0
- data/spec/gemspec_with_source/src/main/java/.keep +0 -0
- data/spec/gemspec_with_source_and_custom_jarname/Mavenfile +5 -0
- data/spec/gemspec_with_source_and_custom_jarname/bouncy-castle-java.gemspec +19 -0
- data/spec/gemspec_with_source_and_custom_jarname/pom.xml +106 -0
- data/spec/gemspec_with_source_and_custom_jarname/src/main/java/.keep +0 -0
- data/spec/gemspec_with_source_and_no_jar/Mavenfile +5 -0
- data/spec/gemspec_with_source_and_no_jar/bouncy-castle-java.gemspec +19 -0
- data/spec/gemspec_with_source_and_no_jar/pom.xml +76 -0
- data/spec/gemspec_with_source_and_no_jar/src/main/java/.keep +0 -0
- data/spec/mavenfile/Mavenfile +894 -0
- data/spec/my/my-1.0.gem +0 -0
- data/spec/my/my.gemspec +10 -0
- data/spec/pom.xml +423 -0
- data/spec/pom_from_jarfile/Jarfile +3 -0
- data/spec/pom_from_jarfile/pom.xml +39 -0
- data/spec/pom_maven_alternative_style/pom.rb +57 -6
- data/spec/pom_maven_hash_style/pom.rb +56 -175
- data/spec/pom_maven_style/pom.rb +59 -6
- data/spec/pom_spec.rb +1 -1
- data/spec/pom_with_execute/pom.xml +92 -0
- metadata +246 -2
data/spec/pom_spec.rb
CHANGED
@@ -3,7 +3,7 @@ require 'maven/tools/pom'
|
|
3
3
|
|
4
4
|
describe Maven::Tools::POM do
|
5
5
|
|
6
|
-
( Dir[ File.join( File.dirname( __FILE__ ), 'gem*' ) ] + Dir[ File.join( File.dirname( __FILE__ ), 'pom*' ) ] ).each do |dir|
|
6
|
+
( Dir[ File.join( File.dirname( __FILE__ ), 'gem*' ) ] + Dir[ File.join( File.dirname( __FILE__ ), 'pom*' ) ] + Dir[ File.join( File.dirname( __FILE__ ), 'mavenfile*' ) ] ).each do |dir|
|
7
7
|
if File.directory?( dir )
|
8
8
|
it "should convert #{dir}" do
|
9
9
|
pom = Maven::Tools::POM.new( dir )
|
@@ -0,0 +1,92 @@
|
|
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>pom_with_execute</artifactId>
|
16
|
+
<version>0.0.0</version>
|
17
|
+
<name>example with execute</name>
|
18
|
+
<properties>
|
19
|
+
<tesla.version>0.1.0</tesla.version>
|
20
|
+
</properties>
|
21
|
+
<build>
|
22
|
+
<plugins>
|
23
|
+
<plugin>
|
24
|
+
<groupId>io.tesla.polyglot</groupId>
|
25
|
+
<artifactId>tesla-polyglot-maven-plugin</artifactId>
|
26
|
+
<version>${tesla.version}</version>
|
27
|
+
<executions>
|
28
|
+
<execution>
|
29
|
+
<phase>validate</phase>
|
30
|
+
<goals>
|
31
|
+
<goal>execute</goal>
|
32
|
+
</goals>
|
33
|
+
<configuration>
|
34
|
+
<nativePom>pom.rb</nativePom>
|
35
|
+
</configuration>
|
36
|
+
</execution>
|
37
|
+
<execution>
|
38
|
+
<id>second</id>
|
39
|
+
<phase>validate</phase>
|
40
|
+
<goals>
|
41
|
+
<goal>execute</goal>
|
42
|
+
</goals>
|
43
|
+
<configuration>
|
44
|
+
<taskId>second</taskId>
|
45
|
+
<nativePom>pom.rb</nativePom>
|
46
|
+
</configuration>
|
47
|
+
</execution>
|
48
|
+
<execution>
|
49
|
+
<id>third</id>
|
50
|
+
<phase>validate</phase>
|
51
|
+
<goals>
|
52
|
+
<goal>execute</goal>
|
53
|
+
</goals>
|
54
|
+
<configuration>
|
55
|
+
<taskId>third</taskId>
|
56
|
+
<nativePom>pom.rb</nativePom>
|
57
|
+
</configuration>
|
58
|
+
</execution>
|
59
|
+
<execution>
|
60
|
+
<id>forth</id>
|
61
|
+
<phase>validate</phase>
|
62
|
+
<goals>
|
63
|
+
<goal>execute</goal>
|
64
|
+
</goals>
|
65
|
+
<configuration>
|
66
|
+
<taskId>forth</taskId>
|
67
|
+
<nativePom>pom.rb</nativePom>
|
68
|
+
</configuration>
|
69
|
+
</execution>
|
70
|
+
<execution>
|
71
|
+
<id>fifth</id>
|
72
|
+
<phase>validate</phase>
|
73
|
+
<goals>
|
74
|
+
<goal>execute</goal>
|
75
|
+
</goals>
|
76
|
+
<configuration>
|
77
|
+
<taskId>fifth</taskId>
|
78
|
+
<nativePom>pom.rb</nativePom>
|
79
|
+
</configuration>
|
80
|
+
</execution>
|
81
|
+
</executions>
|
82
|
+
<dependencies>
|
83
|
+
<dependency>
|
84
|
+
<groupId>io.tesla.polyglot</groupId>
|
85
|
+
<artifactId>tesla-polyglot-ruby</artifactId>
|
86
|
+
<version>${tesla.version}</version>
|
87
|
+
</dependency>
|
88
|
+
</dependencies>
|
89
|
+
</plugin>
|
90
|
+
</plugins>
|
91
|
+
</build>
|
92
|
+
</project>
|
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.
|
4
|
+
version: 1.0.0.rc3
|
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-
|
11
|
+
date: 2014-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: virtus
|
@@ -59,6 +59,10 @@ executables: []
|
|
59
59
|
extensions: []
|
60
60
|
extra_rdoc_files: []
|
61
61
|
files:
|
62
|
+
- maven-tools.gemspec
|
63
|
+
- Rakefile
|
64
|
+
- Mavenfile
|
65
|
+
- Gemfile
|
62
66
|
- lib/maven_tools.rb
|
63
67
|
- lib/maven-tools.rb
|
64
68
|
- lib/maven/tools/visitor.rb
|
@@ -95,6 +99,118 @@ files:
|
|
95
99
|
- spec/pom_maven_alternative_style/pom.rb
|
96
100
|
- MIT-LICENSE
|
97
101
|
- README.md
|
102
|
+
- spec/pom.xml
|
103
|
+
- spec/gemfile_with_source/pom.xml
|
104
|
+
- spec/gemspec_in_profile/pom.xml
|
105
|
+
- spec/gemfile_with_lock/pom.xml
|
106
|
+
- spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml
|
107
|
+
- spec/gemspec_with_custom_source_and_custom_jarname/pom.xml
|
108
|
+
- spec/gemspec_prerelease_snapshot/pom.xml
|
109
|
+
- spec/gemfile_with_path/pom.xml
|
110
|
+
- spec/gemfile_with_source_and_custom_jarname/pom.xml
|
111
|
+
- spec/pom_from_jarfile/pom.xml
|
112
|
+
- spec/gemspec_no_rubygems_repo/pom.xml
|
113
|
+
- spec/gemfile_include_jars/pom.xml
|
114
|
+
- spec/gemfile_with_source_and_no_jar/pom.xml
|
115
|
+
- spec/gemspec_with_access_to_model/pom.xml
|
116
|
+
- spec/gemfile/pom.xml
|
117
|
+
- spec/gemspec_with_source_and_custom_jarname/pom.xml
|
118
|
+
- spec/pom_with_execute/pom.xml
|
119
|
+
- spec/gemspec/pom.xml
|
120
|
+
- spec/gemspec_with_custom_source/pom.xml
|
121
|
+
- spec/gemfile_with_access_to_model/pom.xml
|
122
|
+
- spec/gemspec_with_source/pom.xml
|
123
|
+
- spec/gemfile_with_groups_and_lockfile/pom.xml
|
124
|
+
- spec/gemspec_prerelease/pom.xml
|
125
|
+
- spec/gemfile_with_groups/pom.xml
|
126
|
+
- spec/gemfile_with_custom_source/pom.xml
|
127
|
+
- spec/gemspec_with_prereleased_dependency/pom.xml
|
128
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/pom.xml
|
129
|
+
- spec/gemspec_include_jars/pom.xml
|
130
|
+
- spec/gemspec_with_extras/pom.xml
|
131
|
+
- spec/gemspec_with_source_and_no_jar/pom.xml
|
132
|
+
- spec/gemfile_with_extras/pom.xml
|
133
|
+
- spec/gemfile_with_source/Mavenfile
|
134
|
+
- spec/gemspec_in_profile/Mavenfile
|
135
|
+
- spec/gemfile_with_lock/Mavenfile
|
136
|
+
- spec/gemfile_with_lock/Gemfile
|
137
|
+
- spec/gemspec_with_prereleased_dependency_and_no_repo/Mavenfile
|
138
|
+
- spec/gemspec_with_custom_source_and_custom_jarname/Mavenfile
|
139
|
+
- spec/gemspec_prerelease_snapshot/Mavenfile
|
140
|
+
- spec/gemfile_with_path/Mavenfile
|
141
|
+
- spec/gemfile_with_path/Gemfile
|
142
|
+
- spec/gemfile_with_source_and_custom_jarname/Mavenfile
|
143
|
+
- spec/gemfile_with_source_and_custom_jarname/Gemfile
|
144
|
+
- spec/pom_from_jarfile/Jarfile
|
145
|
+
- spec/gemspec_no_rubygems_repo/Mavenfile
|
146
|
+
- spec/gemfile_include_jars/Mavenfile
|
147
|
+
- spec/gemfile_include_jars/Gemfile
|
148
|
+
- spec/gemfile_with_source_and_no_jar/Mavenfile
|
149
|
+
- spec/gemfile_with_source_and_no_jar/Gemfile
|
150
|
+
- spec/gemspec_with_access_to_model/Mavenfile
|
151
|
+
- spec/gemfile/Mavenfile
|
152
|
+
- spec/gemfile/Gemfile
|
153
|
+
- spec/gemspec_with_source_and_custom_jarname/Mavenfile
|
154
|
+
- spec/mavenfile/Mavenfile
|
155
|
+
- spec/gemspec/Mavenfile
|
156
|
+
- spec/gemspec_with_custom_source/Mavenfile
|
157
|
+
- spec/gemfile_with_access_to_model/Mavenfile
|
158
|
+
- spec/gemfile_with_access_to_model/Gemfile
|
159
|
+
- spec/gemspec_with_source/Mavenfile
|
160
|
+
- spec/gemfile_with_groups_and_lockfile/Mavenfile
|
161
|
+
- spec/gemfile_with_groups_and_lockfile/Gemfile
|
162
|
+
- spec/gemspec_prerelease/Mavenfile
|
163
|
+
- spec/gemfile_with_groups/Mavenfile
|
164
|
+
- spec/gemfile_with_groups/Gemfile
|
165
|
+
- spec/gemfile_with_custom_source/Mavenfile
|
166
|
+
- spec/gemfile_with_custom_source/Gemfile
|
167
|
+
- spec/gemspec_with_prereleased_dependency/Mavenfile
|
168
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile
|
169
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/Gemfile
|
170
|
+
- spec/gemspec_include_jars/Mavenfile
|
171
|
+
- spec/gemspec_with_extras/Mavenfile
|
172
|
+
- spec/gemspec_with_source_and_no_jar/Mavenfile
|
173
|
+
- spec/gemfile_with_extras/Mavenfile
|
174
|
+
- spec/gemfile_with_extras/Gemfile
|
175
|
+
- spec/gemfile_with_lock/Gemfile.lock
|
176
|
+
- spec/gemfile_with_groups_and_lockfile/Gemfile.lock
|
177
|
+
- spec/gemfile_with_source/src/main/java/.keep
|
178
|
+
- spec/gemspec_with_custom_source_and_custom_jarname/src/java/.keep
|
179
|
+
- spec/gemfile_with_source_and_custom_jarname/src/main/java/.keep
|
180
|
+
- spec/gemfile_with_source_and_no_jar/src/main/java/.keep
|
181
|
+
- spec/gemspec_with_source_and_custom_jarname/src/main/java/.keep
|
182
|
+
- spec/gemspec_with_custom_source/src/java/.keep
|
183
|
+
- spec/gemspec_with_source/src/main/java/.keep
|
184
|
+
- spec/gemfile_with_custom_source/src/java/.keep
|
185
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/src/java/.keep
|
186
|
+
- spec/gemspec_with_source_and_no_jar/src/main/java/.keep
|
187
|
+
- spec/gemfile_with_source/bouncy-castle-java.gemspec
|
188
|
+
- spec/gemspec_in_profile/bouncy-castle-java.gemspec
|
189
|
+
- spec/gemfile_with_lock/bouncy-castle-java.gemspec
|
190
|
+
- spec/gemspec_with_prereleased_dependency_and_no_repo/bouncy-castle-java.gemspec
|
191
|
+
- spec/my/my.gemspec
|
192
|
+
- spec/gemspec_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
|
193
|
+
- spec/gemspec_prerelease_snapshot/bouncy-castle-java.gemspec
|
194
|
+
- spec/gemfile_with_source_and_custom_jarname/bouncy-castle-java.gemspec
|
195
|
+
- spec/gemspec_no_rubygems_repo/bouncy-castle-java.gemspec
|
196
|
+
- spec/gemfile_include_jars/bouncy-castle-java.gemspec
|
197
|
+
- spec/gemfile_with_source_and_no_jar/bouncy-castle-java.gemspec
|
198
|
+
- spec/gemspec_with_access_to_model/bouncy-castle-java.gemspec
|
199
|
+
- spec/gemfile/bouncy-castle-java.gemspec
|
200
|
+
- spec/gemspec_with_source_and_custom_jarname/bouncy-castle-java.gemspec
|
201
|
+
- spec/gemspec/bouncy-castle-java.gemspec
|
202
|
+
- spec/gemspec_with_custom_source/bouncy-castle-java.gemspec
|
203
|
+
- spec/gemfile_with_access_to_model/bouncy-castle-java.gemspec
|
204
|
+
- spec/gemspec_with_source/bouncy-castle-java.gemspec
|
205
|
+
- spec/gemspec_prerelease/bouncy-castle-java.gemspec
|
206
|
+
- spec/gemfile_with_custom_source/bouncy-castle-java.gemspec
|
207
|
+
- spec/gemspec_with_prereleased_dependency/bouncy-castle-java.gemspec
|
208
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
|
209
|
+
- spec/gemspec_include_jars/bouncy-castle-java.gemspec
|
210
|
+
- spec/gemspec_with_extras/bouncy-castle-java.gemspec
|
211
|
+
- spec/gemspec_with_source_and_no_jar/bouncy-castle-java.gemspec
|
212
|
+
- spec/gemfile_with_extras/bouncy-castle-java.gemspec
|
213
|
+
- spec/my/my-1.0.gem
|
98
214
|
homepage: http://github.com/torquebox/maven-tools
|
99
215
|
licenses:
|
100
216
|
- MIT
|
@@ -124,4 +240,132 @@ test_files:
|
|
124
240
|
- spec/jarfile_spec.rb
|
125
241
|
- spec/coordinate_spec.rb
|
126
242
|
- spec/pom_spec.rb
|
243
|
+
- spec/spec_helper.rb
|
127
244
|
- spec/gemspec_dependencies_spec.rb
|
245
|
+
- spec/gemfile_with_source/bouncy-castle-version.rb
|
246
|
+
- spec/pom_maven_style/pom.rb
|
247
|
+
- spec/gemspec_in_profile/bouncy-castle-version.rb
|
248
|
+
- spec/gemfile_with_lock/bouncy-castle-version.rb
|
249
|
+
- spec/pom_from_jarfile/pom.rb
|
250
|
+
- spec/gemfile_include_jars/bouncy-castle-version.rb
|
251
|
+
- spec/gemfile/bouncy-castle-version.rb
|
252
|
+
- spec/pom_with_execute/pom.rb
|
253
|
+
- spec/gemspec/bouncy-castle-version.rb
|
254
|
+
- spec/gemspec_with_source/bouncy-castle-version.rb
|
255
|
+
- spec/pom_maven_hash_style/pom.rb
|
256
|
+
- spec/gemspec_include_jars/bouncy-castle-version.rb
|
257
|
+
- spec/gemspec_with_extras/bouncy-castle-version.rb
|
258
|
+
- spec/gemfile_with_extras/bouncy-castle-version.rb
|
259
|
+
- spec/pom_maven_alternative_style/pom.rb
|
260
|
+
- spec/pom.xml
|
261
|
+
- spec/gemfile_with_source/pom.xml
|
262
|
+
- spec/gemspec_in_profile/pom.xml
|
263
|
+
- spec/gemfile_with_lock/pom.xml
|
264
|
+
- spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml
|
265
|
+
- spec/gemspec_with_custom_source_and_custom_jarname/pom.xml
|
266
|
+
- spec/gemspec_prerelease_snapshot/pom.xml
|
267
|
+
- spec/gemfile_with_path/pom.xml
|
268
|
+
- spec/gemfile_with_source_and_custom_jarname/pom.xml
|
269
|
+
- spec/pom_from_jarfile/pom.xml
|
270
|
+
- spec/gemspec_no_rubygems_repo/pom.xml
|
271
|
+
- spec/gemfile_include_jars/pom.xml
|
272
|
+
- spec/gemfile_with_source_and_no_jar/pom.xml
|
273
|
+
- spec/gemspec_with_access_to_model/pom.xml
|
274
|
+
- spec/gemfile/pom.xml
|
275
|
+
- spec/gemspec_with_source_and_custom_jarname/pom.xml
|
276
|
+
- spec/pom_with_execute/pom.xml
|
277
|
+
- spec/gemspec/pom.xml
|
278
|
+
- spec/gemspec_with_custom_source/pom.xml
|
279
|
+
- spec/gemfile_with_access_to_model/pom.xml
|
280
|
+
- spec/gemspec_with_source/pom.xml
|
281
|
+
- spec/gemfile_with_groups_and_lockfile/pom.xml
|
282
|
+
- spec/gemspec_prerelease/pom.xml
|
283
|
+
- spec/gemfile_with_groups/pom.xml
|
284
|
+
- spec/gemfile_with_custom_source/pom.xml
|
285
|
+
- spec/gemspec_with_prereleased_dependency/pom.xml
|
286
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/pom.xml
|
287
|
+
- spec/gemspec_include_jars/pom.xml
|
288
|
+
- spec/gemspec_with_extras/pom.xml
|
289
|
+
- spec/gemspec_with_source_and_no_jar/pom.xml
|
290
|
+
- spec/gemfile_with_extras/pom.xml
|
291
|
+
- spec/gemfile_with_source/Mavenfile
|
292
|
+
- spec/gemspec_in_profile/Mavenfile
|
293
|
+
- spec/gemfile_with_lock/Mavenfile
|
294
|
+
- spec/gemfile_with_lock/Gemfile
|
295
|
+
- spec/gemspec_with_prereleased_dependency_and_no_repo/Mavenfile
|
296
|
+
- spec/gemspec_with_custom_source_and_custom_jarname/Mavenfile
|
297
|
+
- spec/gemspec_prerelease_snapshot/Mavenfile
|
298
|
+
- spec/gemfile_with_path/Mavenfile
|
299
|
+
- spec/gemfile_with_path/Gemfile
|
300
|
+
- spec/gemfile_with_source_and_custom_jarname/Mavenfile
|
301
|
+
- spec/gemfile_with_source_and_custom_jarname/Gemfile
|
302
|
+
- spec/pom_from_jarfile/Jarfile
|
303
|
+
- spec/gemspec_no_rubygems_repo/Mavenfile
|
304
|
+
- spec/gemfile_include_jars/Mavenfile
|
305
|
+
- spec/gemfile_include_jars/Gemfile
|
306
|
+
- spec/gemfile_with_source_and_no_jar/Mavenfile
|
307
|
+
- spec/gemfile_with_source_and_no_jar/Gemfile
|
308
|
+
- spec/gemspec_with_access_to_model/Mavenfile
|
309
|
+
- spec/gemfile/Mavenfile
|
310
|
+
- spec/gemfile/Gemfile
|
311
|
+
- spec/gemspec_with_source_and_custom_jarname/Mavenfile
|
312
|
+
- spec/mavenfile/Mavenfile
|
313
|
+
- spec/gemspec/Mavenfile
|
314
|
+
- spec/gemspec_with_custom_source/Mavenfile
|
315
|
+
- spec/gemfile_with_access_to_model/Mavenfile
|
316
|
+
- spec/gemfile_with_access_to_model/Gemfile
|
317
|
+
- spec/gemspec_with_source/Mavenfile
|
318
|
+
- spec/gemfile_with_groups_and_lockfile/Mavenfile
|
319
|
+
- spec/gemfile_with_groups_and_lockfile/Gemfile
|
320
|
+
- spec/gemspec_prerelease/Mavenfile
|
321
|
+
- spec/gemfile_with_groups/Mavenfile
|
322
|
+
- spec/gemfile_with_groups/Gemfile
|
323
|
+
- spec/gemfile_with_custom_source/Mavenfile
|
324
|
+
- spec/gemfile_with_custom_source/Gemfile
|
325
|
+
- spec/gemspec_with_prereleased_dependency/Mavenfile
|
326
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile
|
327
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/Gemfile
|
328
|
+
- spec/gemspec_include_jars/Mavenfile
|
329
|
+
- spec/gemspec_with_extras/Mavenfile
|
330
|
+
- spec/gemspec_with_source_and_no_jar/Mavenfile
|
331
|
+
- spec/gemfile_with_extras/Mavenfile
|
332
|
+
- spec/gemfile_with_extras/Gemfile
|
333
|
+
- spec/gemfile_with_lock/Gemfile.lock
|
334
|
+
- spec/gemfile_with_groups_and_lockfile/Gemfile.lock
|
335
|
+
- spec/gemfile_with_source/src/main/java/.keep
|
336
|
+
- spec/gemspec_with_custom_source_and_custom_jarname/src/java/.keep
|
337
|
+
- spec/gemfile_with_source_and_custom_jarname/src/main/java/.keep
|
338
|
+
- spec/gemfile_with_source_and_no_jar/src/main/java/.keep
|
339
|
+
- spec/gemspec_with_source_and_custom_jarname/src/main/java/.keep
|
340
|
+
- spec/gemspec_with_custom_source/src/java/.keep
|
341
|
+
- spec/gemspec_with_source/src/main/java/.keep
|
342
|
+
- spec/gemfile_with_custom_source/src/java/.keep
|
343
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/src/java/.keep
|
344
|
+
- spec/gemspec_with_source_and_no_jar/src/main/java/.keep
|
345
|
+
- spec/gemfile_with_source/bouncy-castle-java.gemspec
|
346
|
+
- spec/gemspec_in_profile/bouncy-castle-java.gemspec
|
347
|
+
- spec/gemfile_with_lock/bouncy-castle-java.gemspec
|
348
|
+
- spec/gemspec_with_prereleased_dependency_and_no_repo/bouncy-castle-java.gemspec
|
349
|
+
- spec/my/my.gemspec
|
350
|
+
- spec/gemspec_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
|
351
|
+
- spec/gemspec_prerelease_snapshot/bouncy-castle-java.gemspec
|
352
|
+
- spec/gemfile_with_source_and_custom_jarname/bouncy-castle-java.gemspec
|
353
|
+
- spec/gemspec_no_rubygems_repo/bouncy-castle-java.gemspec
|
354
|
+
- spec/gemfile_include_jars/bouncy-castle-java.gemspec
|
355
|
+
- spec/gemfile_with_source_and_no_jar/bouncy-castle-java.gemspec
|
356
|
+
- spec/gemspec_with_access_to_model/bouncy-castle-java.gemspec
|
357
|
+
- spec/gemfile/bouncy-castle-java.gemspec
|
358
|
+
- spec/gemspec_with_source_and_custom_jarname/bouncy-castle-java.gemspec
|
359
|
+
- spec/gemspec/bouncy-castle-java.gemspec
|
360
|
+
- spec/gemspec_with_custom_source/bouncy-castle-java.gemspec
|
361
|
+
- spec/gemfile_with_access_to_model/bouncy-castle-java.gemspec
|
362
|
+
- spec/gemspec_with_source/bouncy-castle-java.gemspec
|
363
|
+
- spec/gemspec_prerelease/bouncy-castle-java.gemspec
|
364
|
+
- spec/gemfile_with_custom_source/bouncy-castle-java.gemspec
|
365
|
+
- spec/gemspec_with_prereleased_dependency/bouncy-castle-java.gemspec
|
366
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
|
367
|
+
- spec/gemspec_include_jars/bouncy-castle-java.gemspec
|
368
|
+
- spec/gemspec_with_extras/bouncy-castle-java.gemspec
|
369
|
+
- spec/gemspec_with_source_and_no_jar/bouncy-castle-java.gemspec
|
370
|
+
- spec/gemfile_with_extras/bouncy-castle-java.gemspec
|
371
|
+
- spec/my/my-1.0.gem
|