maven-tools 1.0.9 → 1.0.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Mavenfile +24 -5
- data/Rakefile +0 -6
- data/lib/maven/tools/artifact.rb +1 -1
- data/lib/maven/tools/version.rb +1 -1
- data/spec/artifact_spec.rb +4 -0
- metadata +202 -202
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23227a0f6772b29501ffa0890a0f9f6ef65e8deb
|
4
|
+
data.tar.gz: bf4f71491ab13af9739905120715e93ae3da10a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d91a6c49dd653da85ff7d6f3fdee43937c7021e27b557ac81f2125ab7a91b49d1d9697e0f27671e511b59ebf0b4d1700b0ecb578bb7418225a4316046b0b9fd
|
7
|
+
data.tar.gz: a54fa8f7ed5d0b40b577b56ba67bbe7127cf4ede4ac4ce244c558ad482cbd1b524690373a3ff11325690f440a41bf1e2f2914f71f9cb294a681f4c657af590d0
|
data/Mavenfile
CHANGED
@@ -9,11 +9,30 @@ end
|
|
9
9
|
#snapshot_repository :jruby, 'http://ci.jruby.org/snapshots/maven'
|
10
10
|
|
11
11
|
# (jruby-1.6.7 produces a lot of yaml errors parsing gemspecs)
|
12
|
-
properties( 'jruby.versions' => ['1.7.12', '1.7.
|
13
|
-
'jruby.modes' => ['1.9', '2.0','2.1'].join(','),
|
12
|
+
properties( 'jruby.versions' => ['1.7.12', '1.7.20', '9.0.0.0.rc1'].join(','),
|
13
|
+
'jruby.modes' => ['1.9', '2.0', '2.1'].join(','),
|
14
14
|
# just lock the versions
|
15
|
-
'jruby.version' => '1.7.
|
16
|
-
'
|
17
|
-
|
15
|
+
'jruby.version' => '1.7.20',
|
16
|
+
'push.skip' => true )
|
17
|
+
|
18
|
+
|
19
|
+
profile :id => :release do
|
20
|
+
properties 'maven.test.skip' => true, 'invoker.skip' => true, 'push.skip' => false
|
21
|
+
|
22
|
+
distribution_management do
|
23
|
+
repository :id => :ossrh, :url => 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
|
24
|
+
end
|
25
|
+
|
26
|
+
build do
|
27
|
+
default_goal :deploy
|
28
|
+
end
|
29
|
+
|
30
|
+
plugin :gpg, '1.5' do
|
31
|
+
execute_goal :sign, :id => 'sign artifacts', :phase => :verify
|
32
|
+
end
|
33
|
+
plugin :deploy, '2.8.2' do
|
34
|
+
execute_goal :deploy, :phase => :deploy, :id => 'deploy gem to maven central'
|
35
|
+
end
|
36
|
+
end
|
18
37
|
|
19
38
|
# vim: syntax=Ruby
|
data/Rakefile
CHANGED
data/lib/maven/tools/artifact.rb
CHANGED
data/lib/maven/tools/version.rb
CHANGED
data/spec/artifact_spec.rb
CHANGED
@@ -6,8 +6,12 @@ describe Maven::Tools::Artifact do
|
|
6
6
|
it 'should convert from coordinate' do
|
7
7
|
Maven::Tools::Artifact.from_coordinate( 'sdas:das:jar:tes:123' ).to_s.must_equal 'sdas:das:jar:tes:123'
|
8
8
|
Maven::Tools::Artifact.from_coordinate( 'sdas:das:jar:123' ).to_s.must_equal 'sdas:das:jar:123'
|
9
|
+
Maven::Tools::Artifact.from_coordinate( 'sdas:das:jar:tes:[123,234]' ).to_s.must_equal 'sdas:das:jar:tes:[123,234]'
|
10
|
+
Maven::Tools::Artifact.from_coordinate( 'sdas:das:jar:[123,234]' ).to_s.must_equal 'sdas:das:jar:[123,234]'
|
9
11
|
Maven::Tools::Artifact.from_coordinate( 'sdas:das:jar:tes:123:[de:fr,gb:us]' ).to_s.must_equal 'sdas:das:jar:tes:123:[de:fr,gb:us]'
|
10
12
|
Maven::Tools::Artifact.from_coordinate( 'sdas:das:jar:123:[de:fr,gb:us]' ).to_s.must_equal 'sdas:das:jar:123:[de:fr,gb:us]'
|
13
|
+
Maven::Tools::Artifact.from_coordinate( 'sdas:das:jar:tes:[123,234]:[de:fr,gb:us]' ).to_s.must_equal 'sdas:das:jar:tes:[123,234]:[de:fr,gb:us]'
|
14
|
+
Maven::Tools::Artifact.from_coordinate( 'sdas:das:jar:[123,234]:[de:fr,gb:us]' ).to_s.must_equal 'sdas:das:jar:[123,234]:[de:fr,gb:us]'
|
11
15
|
end
|
12
16
|
|
13
17
|
it 'should setup artifact' do
|
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.
|
4
|
+
version: 1.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Meier
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: virtus
|
@@ -59,234 +59,234 @@ executables: []
|
|
59
59
|
extensions: []
|
60
60
|
extra_rdoc_files: []
|
61
61
|
files:
|
62
|
-
-
|
62
|
+
- Gemfile
|
63
|
+
- MIT-LICENSE
|
63
64
|
- Mavenfile
|
65
|
+
- README.md
|
64
66
|
- Rakefile
|
65
|
-
- Gemfile
|
66
67
|
- lib/maven-tools.rb
|
67
|
-
- lib/
|
68
|
-
- lib/maven/tools/gemspec_dependencies.rb
|
68
|
+
- lib/maven/tools/artifact.rb
|
69
69
|
- lib/maven/tools/coordinate.rb
|
70
|
-
- lib/maven/tools/visitor.rb
|
71
70
|
- lib/maven/tools/dsl.rb
|
72
|
-
- lib/maven/tools/
|
73
|
-
- lib/maven/tools/jarfile.rb
|
74
|
-
- lib/maven/tools/artifact.rb
|
75
|
-
- lib/maven/tools/versions.rb
|
76
|
-
- lib/maven/tools/version.rb
|
77
|
-
- lib/maven/tools/project.rb
|
78
|
-
- lib/maven/tools/model.rb
|
79
|
-
- lib/maven/tools/licenses.rb
|
80
|
-
- lib/maven/tools/gemfile_lock.rb
|
81
|
-
- lib/maven/tools/dsl/profile_gemspec.rb
|
71
|
+
- lib/maven/tools/dsl/dependency_dsl.rb
|
82
72
|
- lib/maven/tools/dsl/exclusions_dsl.rb
|
83
|
-
- lib/maven/tools/dsl/
|
73
|
+
- lib/maven/tools/dsl/gem_support.rb
|
74
|
+
- lib/maven/tools/dsl/gemspec.rb
|
75
|
+
- lib/maven/tools/dsl/jarfile.rb
|
84
76
|
- lib/maven/tools/dsl/jarfile_lock.rb
|
77
|
+
- lib/maven/tools/dsl/jruby_dsl.rb
|
85
78
|
- lib/maven/tools/dsl/models.rb
|
86
|
-
- lib/maven/tools/dsl/jarfile.rb
|
87
|
-
- lib/maven/tools/dsl/dependency_dsl.rb
|
88
|
-
- lib/maven/tools/dsl/project_gemspec.rb
|
89
79
|
- lib/maven/tools/dsl/options.rb
|
90
|
-
- lib/maven/tools/dsl/
|
91
|
-
- lib/maven/tools/dsl/
|
92
|
-
-
|
93
|
-
-
|
94
|
-
-
|
95
|
-
-
|
80
|
+
- lib/maven/tools/dsl/profile_gemspec.rb
|
81
|
+
- lib/maven/tools/dsl/project_gemspec.rb
|
82
|
+
- lib/maven/tools/gemfile_lock.rb
|
83
|
+
- lib/maven/tools/gemspec_dependencies.rb
|
84
|
+
- lib/maven/tools/jarfile.rb
|
85
|
+
- lib/maven/tools/licenses.rb
|
86
|
+
- lib/maven/tools/model.rb
|
87
|
+
- lib/maven/tools/pom.rb
|
88
|
+
- lib/maven/tools/project.rb
|
89
|
+
- lib/maven/tools/version.rb
|
90
|
+
- lib/maven/tools/versions.rb
|
91
|
+
- lib/maven/tools/visitor.rb
|
92
|
+
- lib/maven_tools.rb
|
93
|
+
- maven-tools.gemspec
|
96
94
|
- spec/artifact_spec.rb
|
97
|
-
- spec/
|
98
|
-
- spec/gemspec_include_jars/bouncy-castle-version.rb
|
99
|
-
- spec/gemfile_with_source/bouncy-castle-version.rb
|
100
|
-
- spec/gemfile/bouncy-castle-version.rb
|
101
|
-
- spec/gemfile_with_lock/bouncy-castle-version.rb
|
102
|
-
- spec/gemspec_with_source/bouncy-castle-version.rb
|
103
|
-
- spec/gemfile_with_extras/bouncy-castle-version.rb
|
104
|
-
- spec/pom_from_jarfile/pom.rb
|
105
|
-
- spec/pom_maven_alternative_style/pom.rb
|
106
|
-
- spec/gemspec_with_extras/bouncy-castle-version.rb
|
107
|
-
- spec/pom_with_execute/pom.rb
|
95
|
+
- spec/coordinate_spec.rb
|
108
96
|
- spec/dsl/gemspec_spec.rb
|
97
|
+
- spec/dsl/gemspec_spec/jars_and_poms.gemspec
|
98
|
+
- spec/dsl/gemspec_spec/jars_and_poms.xml
|
99
|
+
- spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml
|
100
|
+
- spec/dsl/gemspec_spec/maven-tools.gemspec
|
101
|
+
- spec/dsl/gemspec_spec/maven-tools.xml
|
102
|
+
- spec/dsl/jarfile_lock_spec.rb
|
109
103
|
- spec/dsl/profile_gemspec_spec.rb
|
104
|
+
- spec/dsl/profile_gemspec_spec/jars_and_poms.gemspec
|
105
|
+
- spec/dsl/profile_gemspec_spec/jars_and_poms.xml
|
106
|
+
- spec/dsl/profile_gemspec_spec/jars_and_poms_include_jars.xml
|
107
|
+
- spec/dsl/profile_gemspec_spec/maven-tools.gemspec
|
108
|
+
- spec/dsl/profile_gemspec_spec/maven-tools.xml
|
109
|
+
- spec/dsl/profile_gemspec_spec/no_gems.xml
|
110
|
+
- spec/dsl/profile_gemspec_spec/snapshot.gemspec
|
111
|
+
- spec/dsl/profile_gemspec_spec/snapshot.xml
|
112
|
+
- spec/dsl/profile_gemspec_spec/unknown_license.gemspec
|
113
|
+
- spec/dsl/profile_gemspec_spec/unknown_license.xml
|
110
114
|
- spec/dsl/project_gemspec_spec.rb
|
111
|
-
- spec/dsl/
|
112
|
-
- spec/
|
113
|
-
- spec/
|
114
|
-
- spec/
|
115
|
-
- spec/
|
116
|
-
- spec/
|
117
|
-
- spec/gemspec_in_profile/bouncy-castle-version.rb
|
118
|
-
- spec/gemfile_include_jars/bouncy-castle-version.rb
|
119
|
-
- spec/pom_maven_style/pom.rb
|
120
|
-
- spec/gemspec/bouncy-castle-version.rb
|
121
|
-
- spec/pom_from_jarfile_help_only/pom.rb
|
122
|
-
- MIT-LICENSE
|
123
|
-
- README.md
|
124
|
-
- spec/pom.xml
|
125
|
-
- spec/gemspec_include_jars/pom.xml
|
126
|
-
- spec/gemfile_with_custom_source_and_custom_jarname/pom.xml
|
127
|
-
- spec/gemfile_with_source/pom.xml
|
128
|
-
- spec/gemspec_with_source_and_no_jar/pom.xml
|
129
|
-
- spec/gemfile/pom.xml
|
130
|
-
- spec/gemfile_with_lock/pom.xml
|
131
|
-
- spec/gemspec_with_prereleased_dependency/pom.xml
|
132
|
-
- spec/gemfile_with_test_group/pom.xml
|
133
|
-
- spec/gemfile_with_platforms/pom.xml
|
134
|
-
- spec/gemspec_with_source/pom.xml
|
135
|
-
- spec/gemfile_with_source_and_no_jar/pom.xml
|
136
|
-
- spec/gemspec_prerelease_snapshot/pom.xml
|
137
|
-
- spec/gemspec_prerelease/pom.xml
|
138
|
-
- spec/gemspec_with_custom_source_and_custom_jarname/pom.xml
|
139
|
-
- spec/gemfile_with_groups/pom.xml
|
140
|
-
- spec/gemfile_with_extras/pom.xml
|
141
|
-
- spec/gemfile_with_source_and_custom_jarname/pom.xml
|
142
|
-
- spec/pom_from_jarfile/pom.xml
|
143
|
-
- spec/gemspec_with_extras/pom.xml
|
144
|
-
- spec/pom_with_execute/pom.xml
|
145
|
-
- spec/dsl/project_gemspec_spec/profile.xml
|
146
|
-
- spec/dsl/project_gemspec_spec/unknown_license.xml
|
115
|
+
- spec/dsl/project_gemspec_spec/extended.gemspec
|
116
|
+
- spec/dsl/project_gemspec_spec/extended.xml
|
117
|
+
- spec/dsl/project_gemspec_spec/jars_and_poms.gemspec
|
118
|
+
- spec/dsl/project_gemspec_spec/jars_and_poms.xml
|
119
|
+
- spec/dsl/project_gemspec_spec/jars_and_poms_include_jars.xml
|
120
|
+
- spec/dsl/project_gemspec_spec/maven-tools.gemspec
|
147
121
|
- spec/dsl/project_gemspec_spec/maven-tools.xml
|
148
|
-
- spec/dsl/project_gemspec_spec/snapshot.xml
|
149
122
|
- spec/dsl/project_gemspec_spec/no_gems.xml
|
150
|
-
- spec/dsl/project_gemspec_spec/
|
151
|
-
- spec/dsl/project_gemspec_spec/
|
152
|
-
- spec/dsl/project_gemspec_spec/
|
153
|
-
- spec/dsl/
|
154
|
-
- spec/dsl/
|
155
|
-
- spec/
|
156
|
-
- spec/
|
157
|
-
- spec/
|
158
|
-
- spec/
|
159
|
-
- spec/
|
160
|
-
- spec/
|
161
|
-
- spec/
|
162
|
-
- spec/
|
163
|
-
- spec/
|
164
|
-
- spec/pom_from_jarfile_and_lock/pom2.xml
|
165
|
-
- spec/pom_from_jarfile_and_lock/pom.xml
|
166
|
-
- spec/gemspec_no_rubygems_repo/pom.xml
|
167
|
-
- spec/gemfile_with_path/pom.xml
|
168
|
-
- spec/gemspec_with_access_to_model/pom.xml
|
169
|
-
- spec/gemfile_with_groups_and_lockfile/pom.xml
|
170
|
-
- spec/gemfile_with_access_to_model/pom.xml
|
171
|
-
- spec/gemspec_with_source_and_custom_jarname/pom.xml
|
172
|
-
- spec/gemspec_with_custom_source/pom.xml
|
173
|
-
- spec/pom_from_jarfile_with_jruby/pom.xml
|
174
|
-
- spec/pom_from_jarfile_and_skip_lock/pom.xml
|
175
|
-
- spec/gemspec_in_profile/pom.xml
|
123
|
+
- spec/dsl/project_gemspec_spec/profile.xml
|
124
|
+
- spec/dsl/project_gemspec_spec/snapshot.gemspec
|
125
|
+
- spec/dsl/project_gemspec_spec/snapshot.xml
|
126
|
+
- spec/dsl/project_gemspec_spec/unknown_license.gemspec
|
127
|
+
- spec/dsl/project_gemspec_spec/unknown_license.xml
|
128
|
+
- spec/gemfile/Gemfile
|
129
|
+
- spec/gemfile/Mavenfile
|
130
|
+
- spec/gemfile/bouncy-castle-java.gemspec
|
131
|
+
- spec/gemfile/bouncy-castle-version.rb
|
132
|
+
- spec/gemfile/pom.xml
|
133
|
+
- spec/gemfile_include_jars/Gemfile
|
134
|
+
- spec/gemfile_include_jars/Mavenfile
|
135
|
+
- spec/gemfile_include_jars/bouncy-castle-java.gemspec
|
136
|
+
- spec/gemfile_include_jars/bouncy-castle-version.rb
|
176
137
|
- spec/gemfile_include_jars/pom.xml
|
177
|
-
- spec/
|
178
|
-
- spec/
|
179
|
-
- spec/
|
180
|
-
- spec/
|
181
|
-
- spec/
|
182
|
-
- spec/
|
183
|
-
- spec/
|
184
|
-
- spec/
|
138
|
+
- spec/gemfile_with_access_to_model/Gemfile
|
139
|
+
- spec/gemfile_with_access_to_model/Mavenfile
|
140
|
+
- spec/gemfile_with_access_to_model/bouncy-castle-java.gemspec
|
141
|
+
- spec/gemfile_with_access_to_model/pom.xml
|
142
|
+
- spec/gemfile_with_custom_source/Gemfile
|
143
|
+
- spec/gemfile_with_custom_source/Mavenfile
|
144
|
+
- spec/gemfile_with_custom_source/bouncy-castle-java.gemspec
|
145
|
+
- spec/gemfile_with_custom_source/pom.xml
|
146
|
+
- spec/gemfile_with_custom_source/src/java/.keep
|
185
147
|
- spec/gemfile_with_custom_source_and_custom_jarname/Gemfile
|
186
|
-
- spec/
|
187
|
-
- spec/
|
188
|
-
- spec/
|
189
|
-
- spec/
|
190
|
-
- spec/
|
191
|
-
- spec/
|
148
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile
|
149
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
|
150
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/pom.xml
|
151
|
+
- spec/gemfile_with_custom_source_and_custom_jarname/src/java/.keep
|
152
|
+
- spec/gemfile_with_extras/Gemfile
|
153
|
+
- spec/gemfile_with_extras/Mavenfile
|
154
|
+
- spec/gemfile_with_extras/bouncy-castle-java.gemspec
|
155
|
+
- spec/gemfile_with_extras/bouncy-castle-version.rb
|
156
|
+
- spec/gemfile_with_extras/pom.xml
|
157
|
+
- spec/gemfile_with_groups/Gemfile
|
158
|
+
- spec/gemfile_with_groups/Mavenfile
|
159
|
+
- spec/gemfile_with_groups/pom.xml
|
160
|
+
- spec/gemfile_with_groups_and_lockfile/Gemfile
|
161
|
+
- spec/gemfile_with_groups_and_lockfile/Gemfile.lock
|
162
|
+
- spec/gemfile_with_groups_and_lockfile/Mavenfile
|
163
|
+
- spec/gemfile_with_groups_and_lockfile/pom.xml
|
192
164
|
- spec/gemfile_with_lock/Gemfile
|
193
|
-
- spec/
|
194
|
-
- spec/
|
195
|
-
- spec/
|
196
|
-
- spec/
|
165
|
+
- spec/gemfile_with_lock/Gemfile.lock
|
166
|
+
- spec/gemfile_with_lock/Mavenfile
|
167
|
+
- spec/gemfile_with_lock/bouncy-castle-java.gemspec
|
168
|
+
- spec/gemfile_with_lock/bouncy-castle-version.rb
|
169
|
+
- spec/gemfile_with_lock/pom.xml
|
170
|
+
- spec/gemfile_with_path/Gemfile
|
171
|
+
- spec/gemfile_with_path/Mavenfile
|
172
|
+
- spec/gemfile_with_path/pom.xml
|
197
173
|
- spec/gemfile_with_platforms/Gemfile
|
198
|
-
- spec/
|
199
|
-
- spec/
|
200
|
-
- spec/
|
201
|
-
- spec/
|
202
|
-
- spec/
|
203
|
-
- spec/
|
204
|
-
- spec/
|
205
|
-
- spec/gemfile_with_groups/Gemfile
|
206
|
-
- spec/gemfile_with_extras/Mavenfile
|
207
|
-
- spec/gemfile_with_extras/Gemfile
|
208
|
-
- spec/gemfile_with_source_and_custom_jarname/Mavenfile
|
174
|
+
- spec/gemfile_with_platforms/Mavenfile
|
175
|
+
- spec/gemfile_with_platforms/pom.xml
|
176
|
+
- spec/gemfile_with_source/Mavenfile
|
177
|
+
- spec/gemfile_with_source/bouncy-castle-java.gemspec
|
178
|
+
- spec/gemfile_with_source/bouncy-castle-version.rb
|
179
|
+
- spec/gemfile_with_source/pom.xml
|
180
|
+
- spec/gemfile_with_source/src/main/java/.keep
|
209
181
|
- spec/gemfile_with_source_and_custom_jarname/Gemfile
|
210
|
-
- spec/
|
211
|
-
- spec/
|
212
|
-
- spec/
|
213
|
-
- spec/
|
214
|
-
- spec/
|
215
|
-
- spec/
|
182
|
+
- spec/gemfile_with_source_and_custom_jarname/Mavenfile
|
183
|
+
- spec/gemfile_with_source_and_custom_jarname/bouncy-castle-java.gemspec
|
184
|
+
- spec/gemfile_with_source_and_custom_jarname/pom.xml
|
185
|
+
- spec/gemfile_with_source_and_custom_jarname/src/main/java/.keep
|
186
|
+
- spec/gemfile_with_source_and_no_jar/Gemfile
|
187
|
+
- spec/gemfile_with_source_and_no_jar/Mavenfile
|
188
|
+
- spec/gemfile_with_source_and_no_jar/bouncy-castle-java.gemspec
|
189
|
+
- spec/gemfile_with_source_and_no_jar/pom.xml
|
190
|
+
- spec/gemfile_with_source_and_no_jar/src/main/java/.keep
|
191
|
+
- spec/gemfile_with_test_group/Gemfile
|
192
|
+
- spec/gemfile_with_test_group/Gemfile.lock
|
193
|
+
- spec/gemfile_with_test_group/Mavenfile
|
194
|
+
- spec/gemfile_with_test_group/pom.xml
|
195
|
+
- spec/gemfile_without_gemspec/Gemfile
|
196
|
+
- spec/gemfile_without_gemspec/Mavenfile
|
197
|
+
- spec/gemfile_without_gemspec/pom.xml
|
198
|
+
- spec/gemspec/Mavenfile
|
199
|
+
- spec/gemspec/bouncy-castle-java.gemspec
|
200
|
+
- spec/gemspec/bouncy-castle-version.rb
|
201
|
+
- spec/gemspec/pom.xml
|
202
|
+
- spec/gemspec_dependencies_spec.rb
|
203
|
+
- spec/gemspec_in_profile/Mavenfile
|
204
|
+
- spec/gemspec_in_profile/bouncy-castle-java.gemspec
|
205
|
+
- spec/gemspec_in_profile/bouncy-castle-version.rb
|
206
|
+
- spec/gemspec_in_profile/pom.xml
|
207
|
+
- spec/gemspec_include_jars/Mavenfile
|
208
|
+
- spec/gemspec_include_jars/bouncy-castle-java.gemspec
|
209
|
+
- spec/gemspec_include_jars/bouncy-castle-version.rb
|
210
|
+
- spec/gemspec_include_jars/pom.xml
|
216
211
|
- spec/gemspec_no_rubygems_repo/Mavenfile
|
217
|
-
- spec/
|
218
|
-
- spec/
|
212
|
+
- spec/gemspec_no_rubygems_repo/bouncy-castle-java.gemspec
|
213
|
+
- spec/gemspec_no_rubygems_repo/pom.xml
|
214
|
+
- spec/gemspec_prerelease/Mavenfile
|
215
|
+
- spec/gemspec_prerelease/bouncy-castle-java.gemspec
|
216
|
+
- spec/gemspec_prerelease/pom.xml
|
217
|
+
- spec/gemspec_prerelease_snapshot/Mavenfile
|
218
|
+
- spec/gemspec_prerelease_snapshot/bouncy-castle-java.gemspec
|
219
|
+
- spec/gemspec_prerelease_snapshot/pom.xml
|
219
220
|
- spec/gemspec_with_access_to_model/Mavenfile
|
220
|
-
- spec/
|
221
|
-
- spec/
|
222
|
-
- spec/gemfile_with_access_to_model/Mavenfile
|
223
|
-
- spec/gemfile_with_access_to_model/Gemfile
|
224
|
-
- spec/gemspec_with_source_and_custom_jarname/Mavenfile
|
221
|
+
- spec/gemspec_with_access_to_model/bouncy-castle-java.gemspec
|
222
|
+
- spec/gemspec_with_access_to_model/pom.xml
|
225
223
|
- spec/gemspec_with_custom_source/Mavenfile
|
226
|
-
- spec/
|
227
|
-
- spec/
|
228
|
-
- spec/
|
229
|
-
- spec/
|
230
|
-
- spec/
|
224
|
+
- spec/gemspec_with_custom_source/bouncy-castle-java.gemspec
|
225
|
+
- spec/gemspec_with_custom_source/pom.xml
|
226
|
+
- spec/gemspec_with_custom_source/src/java/.keep
|
227
|
+
- spec/gemspec_with_custom_source_and_custom_jarname/Mavenfile
|
228
|
+
- spec/gemspec_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
|
229
|
+
- spec/gemspec_with_custom_source_and_custom_jarname/pom.xml
|
230
|
+
- spec/gemspec_with_custom_source_and_custom_jarname/src/java/.keep
|
231
|
+
- spec/gemspec_with_extras/Mavenfile
|
232
|
+
- spec/gemspec_with_extras/bouncy-castle-java.gemspec
|
233
|
+
- spec/gemspec_with_extras/bouncy-castle-version.rb
|
234
|
+
- spec/gemspec_with_extras/pom.xml
|
231
235
|
- spec/gemspec_with_jar_dependencies/Mavenfile
|
232
|
-
- spec/gemspec
|
236
|
+
- spec/gemspec_with_jar_dependencies/bouncy-castle-java.gemspec
|
237
|
+
- spec/gemspec_with_jar_dependencies/pom.xml
|
238
|
+
- spec/gemspec_with_prereleased_dependency/Mavenfile
|
239
|
+
- spec/gemspec_with_prereleased_dependency/bouncy-castle-java.gemspec
|
240
|
+
- spec/gemspec_with_prereleased_dependency/pom.xml
|
233
241
|
- spec/gemspec_with_prereleased_dependency_and_no_repo/Mavenfile
|
234
|
-
- spec/
|
235
|
-
- spec/
|
236
|
-
- spec/
|
237
|
-
- spec/
|
238
|
-
- spec/
|
239
|
-
- spec/
|
240
|
-
- spec/gemfile_with_test_group/Gemfile.lock
|
241
|
-
- spec/gemfile_with_groups_and_lockfile/Gemfile.lock
|
242
|
-
- spec/gemfile_with_custom_source_and_custom_jarname/src/java/.keep
|
243
|
-
- spec/gemfile_with_source/src/main/java/.keep
|
244
|
-
- spec/gemspec_with_source_and_no_jar/src/main/java/.keep
|
242
|
+
- spec/gemspec_with_prereleased_dependency_and_no_repo/bouncy-castle-java.gemspec
|
243
|
+
- spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml
|
244
|
+
- spec/gemspec_with_source/Mavenfile
|
245
|
+
- spec/gemspec_with_source/bouncy-castle-java.gemspec
|
246
|
+
- spec/gemspec_with_source/bouncy-castle-version.rb
|
247
|
+
- spec/gemspec_with_source/pom.xml
|
245
248
|
- spec/gemspec_with_source/src/main/java/.keep
|
246
|
-
- spec/
|
247
|
-
- spec/
|
248
|
-
- spec/
|
249
|
-
- spec/gemfile_with_custom_source/src/java/.keep
|
249
|
+
- spec/gemspec_with_source_and_custom_jarname/Mavenfile
|
250
|
+
- spec/gemspec_with_source_and_custom_jarname/bouncy-castle-java.gemspec
|
251
|
+
- spec/gemspec_with_source_and_custom_jarname/pom.xml
|
250
252
|
- spec/gemspec_with_source_and_custom_jarname/src/main/java/.keep
|
251
|
-
- spec/
|
252
|
-
- spec/gemspec_include_jars/bouncy-castle-java.gemspec
|
253
|
-
- spec/gemfile_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
|
254
|
-
- spec/gemfile_with_source/bouncy-castle-java.gemspec
|
253
|
+
- spec/gemspec_with_source_and_no_jar/Mavenfile
|
255
254
|
- spec/gemspec_with_source_and_no_jar/bouncy-castle-java.gemspec
|
256
|
-
- spec/
|
257
|
-
- spec/
|
258
|
-
- spec/
|
259
|
-
- spec/
|
260
|
-
- spec/gemfile_with_source_and_no_jar/bouncy-castle-java.gemspec
|
261
|
-
- spec/gemspec_prerelease_snapshot/bouncy-castle-java.gemspec
|
255
|
+
- spec/gemspec_with_source_and_no_jar/pom.xml
|
256
|
+
- spec/gemspec_with_source_and_no_jar/src/main/java/.keep
|
257
|
+
- spec/jarfile_spec.rb
|
258
|
+
- spec/mavenfile/Mavenfile
|
262
259
|
- spec/my/my.gemspec
|
263
|
-
- spec/
|
264
|
-
- spec/
|
265
|
-
- spec/
|
266
|
-
- spec/
|
267
|
-
- spec/
|
268
|
-
- spec/
|
269
|
-
- spec/
|
270
|
-
- spec/
|
271
|
-
- spec/
|
272
|
-
- spec/
|
273
|
-
- spec/
|
274
|
-
- spec/
|
275
|
-
- spec/
|
276
|
-
- spec/
|
277
|
-
- spec/
|
278
|
-
- spec/
|
279
|
-
- spec/
|
280
|
-
- spec/
|
281
|
-
- spec/
|
282
|
-
- spec/
|
283
|
-
- spec/
|
284
|
-
- spec/
|
285
|
-
- spec/
|
286
|
-
- spec/
|
287
|
-
- spec/
|
288
|
-
- spec/
|
289
|
-
- spec/
|
260
|
+
- spec/pom.xml
|
261
|
+
- spec/pom_from_jarfile/Jarfile
|
262
|
+
- spec/pom_from_jarfile/pom.rb
|
263
|
+
- spec/pom_from_jarfile/pom.xml
|
264
|
+
- spec/pom_from_jarfile_and_lock/Jarfile
|
265
|
+
- spec/pom_from_jarfile_and_lock/pom.rb
|
266
|
+
- spec/pom_from_jarfile_and_lock/pom.xml
|
267
|
+
- spec/pom_from_jarfile_and_lock/pom2.xml
|
268
|
+
- spec/pom_from_jarfile_and_skip_lock/Jarfile
|
269
|
+
- spec/pom_from_jarfile_and_skip_lock/pom.rb
|
270
|
+
- spec/pom_from_jarfile_and_skip_lock/pom.xml
|
271
|
+
- spec/pom_from_jarfile_help_only/Jarfile
|
272
|
+
- spec/pom_from_jarfile_help_only/pom.rb
|
273
|
+
- spec/pom_from_jarfile_help_only/pom.xml
|
274
|
+
- spec/pom_from_jarfile_with_exclusions/Jarfile
|
275
|
+
- spec/pom_from_jarfile_with_exclusions/pom.rb
|
276
|
+
- spec/pom_from_jarfile_with_exclusions/pom.xml
|
277
|
+
- spec/pom_from_jarfile_with_jruby/Jarfile
|
278
|
+
- spec/pom_from_jarfile_with_jruby/pom.rb
|
279
|
+
- spec/pom_from_jarfile_with_jruby/pom.xml
|
280
|
+
- spec/pom_from_jarfile_with_repos/Jarfile
|
281
|
+
- spec/pom_from_jarfile_with_repos/Mavenfile
|
282
|
+
- spec/pom_from_jarfile_with_repos/pom.xml
|
283
|
+
- spec/pom_maven_alternative_style/pom.rb
|
284
|
+
- spec/pom_maven_hash_style/pom.rb
|
285
|
+
- spec/pom_maven_style/pom.rb
|
286
|
+
- spec/pom_spec.rb
|
287
|
+
- spec/pom_with_execute/pom.rb
|
288
|
+
- spec/pom_with_execute/pom.xml
|
289
|
+
- spec/spec_helper.rb
|
290
290
|
homepage: http://github.com/torquebox/maven-tools
|
291
291
|
licenses:
|
292
292
|
- MIT
|
@@ -307,7 +307,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
307
307
|
version: '0'
|
308
308
|
requirements: []
|
309
309
|
rubyforge_project:
|
310
|
-
rubygems_version: 2.
|
310
|
+
rubygems_version: 2.4.6
|
311
311
|
signing_key:
|
312
312
|
specification_version: 4
|
313
313
|
summary: helpers for maven related tasks
|