maven-tools 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +4 -4
  2. data/Mavenfile +4 -3
  3. data/Rakefile +33 -1
  4. data/lib/maven/tools/dsl.rb +32 -119
  5. data/lib/maven/tools/dsl/dependency_dsl.rb +9 -3
  6. data/lib/maven/tools/dsl/gem_support.rb +97 -0
  7. data/lib/maven/tools/dsl/gemspec.rb +158 -0
  8. data/lib/maven/tools/dsl/jarfile.rb +72 -16
  9. data/lib/maven/tools/dsl/jarfile_lock.rb +106 -0
  10. data/lib/maven/tools/dsl/profile_gemspec.rb +42 -0
  11. data/lib/maven/tools/dsl/project_gemspec.rb +84 -0
  12. data/lib/maven/tools/gemspec_dependencies.rb +1 -0
  13. data/lib/maven/tools/jarfile.rb +7 -4
  14. data/lib/maven/tools/licenses.rb +77 -0
  15. data/lib/maven/tools/pom.rb +3 -5
  16. data/lib/maven/tools/project.rb +49 -0
  17. data/lib/maven/tools/version.rb +1 -1
  18. data/lib/maven/tools/versions.rb +3 -3
  19. data/lib/maven/tools/visitor.rb +8 -8
  20. data/spec/dsl/gemspec_spec.rb +58 -0
  21. data/spec/dsl/gemspec_spec/jars_and_poms.gemspec +22 -0
  22. data/spec/dsl/gemspec_spec/jars_and_poms.xml +47 -0
  23. data/spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml +64 -0
  24. data/spec/dsl/gemspec_spec/maven-tools.gemspec +422 -0
  25. data/spec/dsl/gemspec_spec/maven-tools.xml +44 -0
  26. data/spec/dsl/jarfile_lock_spec.rb +118 -0
  27. data/spec/dsl/profile_gemspec_spec.rb +77 -0
  28. data/spec/dsl/profile_gemspec_spec/jars_and_poms.gemspec +21 -0
  29. data/spec/dsl/profile_gemspec_spec/jars_and_poms.xml +54 -0
  30. data/spec/dsl/profile_gemspec_spec/jars_and_poms_include_jars.xml +71 -0
  31. data/spec/dsl/profile_gemspec_spec/maven-tools.gemspec +422 -0
  32. data/spec/dsl/profile_gemspec_spec/maven-tools.xml +51 -0
  33. data/spec/dsl/profile_gemspec_spec/no_gems.xml +29 -0
  34. data/spec/dsl/profile_gemspec_spec/snapshot.gemspec +17 -0
  35. data/spec/dsl/profile_gemspec_spec/snapshot.xml +29 -0
  36. data/spec/dsl/project_gemspec_spec.rb +97 -0
  37. data/spec/dsl/project_gemspec_spec/extended.gemspec +22 -0
  38. data/spec/dsl/project_gemspec_spec/extended.xml +86 -0
  39. data/spec/dsl/project_gemspec_spec/jars_and_poms.gemspec +21 -0
  40. data/spec/dsl/project_gemspec_spec/jars_and_poms.xml +82 -0
  41. data/spec/dsl/project_gemspec_spec/jars_and_poms_include_jars.xml +99 -0
  42. data/spec/dsl/project_gemspec_spec/maven-tools.gemspec +422 -0
  43. data/spec/dsl/project_gemspec_spec/maven-tools.xml +79 -0
  44. data/spec/dsl/project_gemspec_spec/no_gems.xml +57 -0
  45. data/spec/dsl/project_gemspec_spec/profile.xml +84 -0
  46. data/spec/dsl/project_gemspec_spec/snapshot.gemspec +17 -0
  47. data/spec/dsl/project_gemspec_spec/snapshot.xml +57 -0
  48. data/spec/gemfile/pom.xml +1 -1
  49. data/spec/gemfile_include_jars/pom.xml +16 -1
  50. data/spec/gemfile_with_access_to_model/pom.xml +1 -1
  51. data/spec/gemfile_with_custom_source/pom.xml +1 -1
  52. data/spec/gemfile_with_custom_source_and_custom_jarname/pom.xml +1 -1
  53. data/spec/gemfile_with_extras/pom.xml +16 -1
  54. data/spec/gemfile_with_groups/pom.xml +1 -1
  55. data/spec/gemfile_with_groups_and_lockfile/pom.xml +1 -1
  56. data/spec/gemfile_with_lock/pom.xml +1 -1
  57. data/spec/gemfile_with_path/pom.xml +2 -2
  58. data/spec/gemfile_with_platforms/pom.xml +1 -1
  59. data/spec/gemfile_with_source/pom.xml +1 -1
  60. data/spec/gemfile_with_source_and_custom_jarname/pom.xml +1 -1
  61. data/spec/gemfile_with_source_and_no_jar/pom.xml +1 -1
  62. data/spec/gemfile_with_test_group/pom.xml +1 -1
  63. data/spec/gemfile_without_gemspec/pom.xml +1 -1
  64. data/spec/gemspec/bouncy-castle-java.gemspec +1 -0
  65. data/spec/gemspec/pom.xml +18 -1
  66. data/spec/gemspec_in_profile/pom.xml +1 -1
  67. data/spec/gemspec_include_jars/pom.xml +16 -1
  68. data/spec/gemspec_no_rubygems_repo/pom.xml +1 -1
  69. data/spec/gemspec_prerelease/pom.xml +2 -2
  70. data/spec/gemspec_prerelease_snapshot/pom.xml +1 -1
  71. data/spec/gemspec_with_access_to_model/pom.xml +1 -1
  72. data/spec/gemspec_with_custom_source/pom.xml +1 -1
  73. data/spec/gemspec_with_custom_source_and_custom_jarname/pom.xml +1 -1
  74. data/spec/gemspec_with_extras/pom.xml +16 -1
  75. data/spec/gemspec_with_prereleased_dependency/pom.xml +1 -1
  76. data/spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml +1 -1
  77. data/spec/gemspec_with_source/pom.xml +1 -1
  78. data/spec/gemspec_with_source_and_custom_jarname/pom.xml +1 -1
  79. data/spec/gemspec_with_source_and_no_jar/pom.xml +1 -1
  80. data/spec/mavenfile/Mavenfile +1 -1
  81. data/spec/pom.xml +1 -1
  82. data/spec/pom_from_jarfile/pom.xml +0 -7
  83. data/spec/pom_from_jarfile_and_lock/Jarfile +3 -0
  84. data/spec/pom_from_jarfile_and_lock/pom.rb +5 -0
  85. data/spec/pom_from_jarfile_and_lock/pom.xml +37 -0
  86. data/spec/pom_from_jarfile_and_lock/pom2.xml +41 -0
  87. data/spec/pom_from_jarfile_and_skip_lock/Jarfile +3 -0
  88. data/spec/pom_from_jarfile_and_skip_lock/pom.rb +5 -0
  89. data/spec/pom_from_jarfile_and_skip_lock/pom.xml +31 -0
  90. data/spec/pom_from_jarfile_with_jruby/Jarfile +1 -0
  91. data/spec/pom_from_jarfile_with_jruby/pom.xml +0 -15
  92. data/spec/pom_maven_alternative_style/pom.rb +1 -1
  93. data/spec/pom_maven_hash_style/pom.rb +1 -1
  94. data/spec/pom_maven_style/pom.rb +1 -1
  95. metadata +79 -2
@@ -0,0 +1,422 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: maven-tools
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.5
5
+ platform: ruby
6
+ authors:
7
+ - Christian Meier
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: virtus
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '5.3'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '5.3'
55
+ description: adds versions conversion from rubygems to maven and vice versa, ruby
56
+ DSL for POM (Project Object Model from maven), pom generators, etc
57
+ email:
58
+ - m.kristian@web.de
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - maven-tools.gemspec
64
+ - Rakefile
65
+ - Mavenfile
66
+ - Gemfile
67
+ - lib/maven_tools.rb
68
+ - lib/maven-tools.rb
69
+ - lib/maven/tools/visitor.rb
70
+ - lib/maven/tools/version.rb
71
+ - lib/maven/tools/artifact.rb
72
+ - lib/maven/tools/model.rb
73
+ - lib/maven/tools/versions.rb
74
+ - lib/maven/tools/gemspec_dependencies.rb
75
+ - lib/maven/tools/gemfile_lock.rb
76
+ - lib/maven/tools/dsl.rb
77
+ - lib/maven/tools/jarfile.rb
78
+ - lib/maven/tools/pom.rb
79
+ - lib/maven/tools/coordinate.rb
80
+ - lib/maven/tools/dsl/models.rb
81
+ - lib/maven/tools/dsl/dependency_dsl.rb
82
+ - lib/maven/tools/dsl/jarfile.rb
83
+ - lib/maven/tools/dsl/jruby_dsl.rb
84
+ - lib/maven/tools/dsl/exclusions_dsl.rb
85
+ - lib/maven/tools/dsl/options.rb
86
+ - spec/artifact_spec.rb
87
+ - spec/jarfile_spec.rb
88
+ - spec/coordinate_spec.rb
89
+ - spec/pom_spec.rb
90
+ - spec/spec_helper.rb
91
+ - spec/gemspec_dependencies_spec.rb
92
+ - spec/gemfile_with_source/bouncy-castle-version.rb
93
+ - spec/pom_from_jarfile_with_jruby/pom.rb
94
+ - spec/pom_maven_style/pom.rb
95
+ - spec/gemspec_in_profile/bouncy-castle-version.rb
96
+ - spec/gemfile_with_lock/bouncy-castle-version.rb
97
+ - spec/pom_from_jarfile_help_only/pom.rb
98
+ - spec/pom_from_jarfile/pom.rb
99
+ - spec/gemfile_include_jars/bouncy-castle-version.rb
100
+ - spec/gemfile/bouncy-castle-version.rb
101
+ - spec/pom_with_execute/pom.rb
102
+ - spec/gemspec/bouncy-castle-version.rb
103
+ - spec/gemspec_with_source/bouncy-castle-version.rb
104
+ - spec/pom_maven_hash_style/pom.rb
105
+ - spec/gemspec_include_jars/bouncy-castle-version.rb
106
+ - spec/gemspec_with_extras/bouncy-castle-version.rb
107
+ - spec/gemfile_with_extras/bouncy-castle-version.rb
108
+ - spec/pom_from_jarfile_with_exclusions/pom.rb
109
+ - spec/pom_maven_alternative_style/pom.rb
110
+ - MIT-LICENSE
111
+ - README.md
112
+ - spec/pom.xml
113
+ - spec/gemfile_with_source/pom.xml
114
+ - spec/pom_from_jarfile_with_jruby/pom.xml
115
+ - spec/gemspec_in_profile/pom.xml
116
+ - spec/pom_from_jarfile_with_repos/pom.xml
117
+ - spec/gemfile_with_lock/pom.xml
118
+ - spec/gemfile_with_test_group/pom.xml
119
+ - spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml
120
+ - spec/gemspec_with_custom_source_and_custom_jarname/pom.xml
121
+ - spec/gemspec_prerelease_snapshot/pom.xml
122
+ - spec/gemfile_with_path/pom.xml
123
+ - spec/pom_from_jarfile_help_only/pom.xml
124
+ - spec/gemfile_with_source_and_custom_jarname/pom.xml
125
+ - spec/pom_from_jarfile/pom.xml
126
+ - spec/gemspec_no_rubygems_repo/pom.xml
127
+ - spec/gemfile_include_jars/pom.xml
128
+ - spec/gemfile_with_source_and_no_jar/pom.xml
129
+ - spec/gemspec_with_access_to_model/pom.xml
130
+ - spec/gemfile/pom.xml
131
+ - spec/gemspec_with_source_and_custom_jarname/pom.xml
132
+ - spec/pom_with_execute/pom.xml
133
+ - spec/gemspec/pom.xml
134
+ - spec/gemspec_with_custom_source/pom.xml
135
+ - spec/gemfile_with_platforms/pom.xml
136
+ - spec/gemfile_with_access_to_model/pom.xml
137
+ - spec/gemspec_with_source/pom.xml
138
+ - spec/gemfile_with_groups_and_lockfile/pom.xml
139
+ - spec/gemspec_prerelease/pom.xml
140
+ - spec/gemfile_with_groups/pom.xml
141
+ - spec/gemfile_with_custom_source/pom.xml
142
+ - spec/gemspec_with_prereleased_dependency/pom.xml
143
+ - spec/gemfile_without_gemspec/pom.xml
144
+ - spec/gemfile_with_custom_source_and_custom_jarname/pom.xml
145
+ - spec/gemspec_include_jars/pom.xml
146
+ - spec/gemspec_with_extras/pom.xml
147
+ - spec/gemspec_with_source_and_no_jar/pom.xml
148
+ - spec/gemfile_with_extras/pom.xml
149
+ - spec/pom_from_jarfile_with_exclusions/pom.xml
150
+ - spec/gemfile_with_source/Mavenfile
151
+ - spec/pom_from_jarfile_with_jruby/Jarfile
152
+ - spec/gemspec_in_profile/Mavenfile
153
+ - spec/pom_from_jarfile_with_repos/Jarfile
154
+ - spec/pom_from_jarfile_with_repos/Mavenfile
155
+ - spec/gemfile_with_lock/Mavenfile
156
+ - spec/gemfile_with_lock/Gemfile
157
+ - spec/gemfile_with_test_group/Mavenfile
158
+ - spec/gemfile_with_test_group/Gemfile
159
+ - spec/gemspec_with_prereleased_dependency_and_no_repo/Mavenfile
160
+ - spec/gemspec_with_custom_source_and_custom_jarname/Mavenfile
161
+ - spec/gemspec_prerelease_snapshot/Mavenfile
162
+ - spec/gemfile_with_path/Mavenfile
163
+ - spec/gemfile_with_path/Gemfile
164
+ - spec/pom_from_jarfile_help_only/Jarfile
165
+ - spec/gemfile_with_source_and_custom_jarname/Mavenfile
166
+ - spec/gemfile_with_source_and_custom_jarname/Gemfile
167
+ - spec/pom_from_jarfile/Jarfile
168
+ - spec/gemspec_no_rubygems_repo/Mavenfile
169
+ - spec/gemfile_include_jars/Mavenfile
170
+ - spec/gemfile_include_jars/Gemfile
171
+ - spec/gemfile_with_source_and_no_jar/Mavenfile
172
+ - spec/gemfile_with_source_and_no_jar/Gemfile
173
+ - spec/gemspec_with_access_to_model/Mavenfile
174
+ - spec/gemfile/Mavenfile
175
+ - spec/gemfile/Gemfile
176
+ - spec/gemspec_with_source_and_custom_jarname/Mavenfile
177
+ - spec/mavenfile/Mavenfile
178
+ - spec/gemspec/Mavenfile
179
+ - spec/gemspec_with_custom_source/Mavenfile
180
+ - spec/gemfile_with_platforms/Mavenfile
181
+ - spec/gemfile_with_platforms/Gemfile
182
+ - spec/gemfile_with_access_to_model/Mavenfile
183
+ - spec/gemfile_with_access_to_model/Gemfile
184
+ - spec/gemspec_with_source/Mavenfile
185
+ - spec/gemfile_with_groups_and_lockfile/Mavenfile
186
+ - spec/gemfile_with_groups_and_lockfile/Gemfile
187
+ - spec/gemspec_prerelease/Mavenfile
188
+ - spec/gemfile_with_groups/Mavenfile
189
+ - spec/gemfile_with_groups/Gemfile
190
+ - spec/gemfile_with_custom_source/Mavenfile
191
+ - spec/gemfile_with_custom_source/Gemfile
192
+ - spec/gemspec_with_prereleased_dependency/Mavenfile
193
+ - spec/gemfile_without_gemspec/Mavenfile
194
+ - spec/gemfile_without_gemspec/Gemfile
195
+ - spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile
196
+ - spec/gemfile_with_custom_source_and_custom_jarname/Gemfile
197
+ - spec/gemspec_include_jars/Mavenfile
198
+ - spec/gemspec_with_extras/Mavenfile
199
+ - spec/gemspec_with_source_and_no_jar/Mavenfile
200
+ - spec/gemfile_with_extras/Mavenfile
201
+ - spec/gemfile_with_extras/Gemfile
202
+ - spec/pom_from_jarfile_with_exclusions/Jarfile
203
+ - spec/gemfile_with_lock/Gemfile.lock
204
+ - spec/gemfile_with_test_group/Gemfile.lock
205
+ - spec/gemfile_with_groups_and_lockfile/Gemfile.lock
206
+ - spec/gemfile_with_source/src/main/java/.keep
207
+ - spec/gemspec_with_custom_source_and_custom_jarname/src/java/.keep
208
+ - spec/gemfile_with_source_and_custom_jarname/src/main/java/.keep
209
+ - spec/gemfile_with_source_and_no_jar/src/main/java/.keep
210
+ - spec/gemspec_with_source_and_custom_jarname/src/main/java/.keep
211
+ - spec/gemspec_with_custom_source/src/java/.keep
212
+ - spec/gemspec_with_source/src/main/java/.keep
213
+ - spec/gemfile_with_custom_source/src/java/.keep
214
+ - spec/gemfile_with_custom_source_and_custom_jarname/src/java/.keep
215
+ - spec/gemspec_with_source_and_no_jar/src/main/java/.keep
216
+ - spec/gemfile_with_source/bouncy-castle-java.gemspec
217
+ - spec/gemspec_in_profile/bouncy-castle-java.gemspec
218
+ - spec/gemfile_with_lock/bouncy-castle-java.gemspec
219
+ - spec/gemspec_with_prereleased_dependency_and_no_repo/bouncy-castle-java.gemspec
220
+ - spec/my/my.gemspec
221
+ - spec/gemspec_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
222
+ - spec/gemspec_prerelease_snapshot/bouncy-castle-java.gemspec
223
+ - spec/gemfile_with_source_and_custom_jarname/bouncy-castle-java.gemspec
224
+ - spec/gemspec_no_rubygems_repo/bouncy-castle-java.gemspec
225
+ - spec/gemfile_include_jars/bouncy-castle-java.gemspec
226
+ - spec/gemfile_with_source_and_no_jar/bouncy-castle-java.gemspec
227
+ - spec/gemspec_with_access_to_model/bouncy-castle-java.gemspec
228
+ - spec/gemfile/bouncy-castle-java.gemspec
229
+ - spec/gemspec_with_source_and_custom_jarname/bouncy-castle-java.gemspec
230
+ - spec/gemspec/bouncy-castle-java.gemspec
231
+ - spec/gemspec_with_custom_source/bouncy-castle-java.gemspec
232
+ - spec/gemfile_with_access_to_model/bouncy-castle-java.gemspec
233
+ - spec/gemspec_with_source/bouncy-castle-java.gemspec
234
+ - spec/gemspec_prerelease/bouncy-castle-java.gemspec
235
+ - spec/gemfile_with_custom_source/bouncy-castle-java.gemspec
236
+ - spec/gemspec_with_prereleased_dependency/bouncy-castle-java.gemspec
237
+ - spec/gemfile_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
238
+ - spec/gemspec_include_jars/bouncy-castle-java.gemspec
239
+ - spec/gemspec_with_extras/bouncy-castle-java.gemspec
240
+ - spec/gemspec_with_source_and_no_jar/bouncy-castle-java.gemspec
241
+ - spec/gemfile_with_extras/bouncy-castle-java.gemspec
242
+ homepage: http://github.com/torquebox/maven-tools
243
+ licenses:
244
+ - MIT
245
+ metadata: {}
246
+ post_install_message:
247
+ rdoc_options: []
248
+ require_paths:
249
+ - lib
250
+ required_ruby_version: !ruby/object:Gem::Requirement
251
+ requirements:
252
+ - - '>='
253
+ - !ruby/object:Gem::Version
254
+ version: '0'
255
+ required_rubygems_version: !ruby/object:Gem::Requirement
256
+ requirements:
257
+ - - '>='
258
+ - !ruby/object:Gem::Version
259
+ version: '0'
260
+ requirements: []
261
+ rubyforge_project:
262
+ rubygems_version: 2.4.2
263
+ signing_key:
264
+ specification_version: 4
265
+ summary: helpers for maven related tasks
266
+ test_files:
267
+ - spec/artifact_spec.rb
268
+ - spec/jarfile_spec.rb
269
+ - spec/coordinate_spec.rb
270
+ - spec/pom_spec.rb
271
+ - spec/spec_helper.rb
272
+ - spec/gemspec_dependencies_spec.rb
273
+ - spec/gemfile_with_source/bouncy-castle-version.rb
274
+ - spec/pom_from_jarfile_with_jruby/pom.rb
275
+ - spec/pom_maven_style/pom.rb
276
+ - spec/gemspec_in_profile/bouncy-castle-version.rb
277
+ - spec/gemfile_with_lock/bouncy-castle-version.rb
278
+ - spec/pom_from_jarfile_help_only/pom.rb
279
+ - spec/pom_from_jarfile/pom.rb
280
+ - spec/gemfile_include_jars/bouncy-castle-version.rb
281
+ - spec/gemfile/bouncy-castle-version.rb
282
+ - spec/pom_with_execute/pom.rb
283
+ - spec/gemspec/bouncy-castle-version.rb
284
+ - spec/gemspec_with_source/bouncy-castle-version.rb
285
+ - spec/pom_maven_hash_style/pom.rb
286
+ - spec/gemspec_include_jars/bouncy-castle-version.rb
287
+ - spec/gemspec_with_extras/bouncy-castle-version.rb
288
+ - spec/gemfile_with_extras/bouncy-castle-version.rb
289
+ - spec/pom_from_jarfile_with_exclusions/pom.rb
290
+ - spec/pom_maven_alternative_style/pom.rb
291
+ - spec/pom.xml
292
+ - spec/gemfile_with_source/pom.xml
293
+ - spec/pom_from_jarfile_with_jruby/pom.xml
294
+ - spec/gemspec_in_profile/pom.xml
295
+ - spec/pom_from_jarfile_with_repos/pom.xml
296
+ - spec/gemfile_with_lock/pom.xml
297
+ - spec/gemfile_with_test_group/pom.xml
298
+ - spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml
299
+ - spec/gemspec_with_custom_source_and_custom_jarname/pom.xml
300
+ - spec/gemspec_prerelease_snapshot/pom.xml
301
+ - spec/gemfile_with_path/pom.xml
302
+ - spec/pom_from_jarfile_help_only/pom.xml
303
+ - spec/gemfile_with_source_and_custom_jarname/pom.xml
304
+ - spec/pom_from_jarfile/pom.xml
305
+ - spec/gemspec_no_rubygems_repo/pom.xml
306
+ - spec/gemfile_include_jars/pom.xml
307
+ - spec/gemfile_with_source_and_no_jar/pom.xml
308
+ - spec/gemspec_with_access_to_model/pom.xml
309
+ - spec/gemfile/pom.xml
310
+ - spec/gemspec_with_source_and_custom_jarname/pom.xml
311
+ - spec/pom_with_execute/pom.xml
312
+ - spec/gemspec/pom.xml
313
+ - spec/gemspec_with_custom_source/pom.xml
314
+ - spec/gemfile_with_platforms/pom.xml
315
+ - spec/gemfile_with_access_to_model/pom.xml
316
+ - spec/gemspec_with_source/pom.xml
317
+ - spec/gemfile_with_groups_and_lockfile/pom.xml
318
+ - spec/gemspec_prerelease/pom.xml
319
+ - spec/gemfile_with_groups/pom.xml
320
+ - spec/gemfile_with_custom_source/pom.xml
321
+ - spec/gemspec_with_prereleased_dependency/pom.xml
322
+ - spec/gemfile_without_gemspec/pom.xml
323
+ - spec/gemfile_with_custom_source_and_custom_jarname/pom.xml
324
+ - spec/gemspec_include_jars/pom.xml
325
+ - spec/gemspec_with_extras/pom.xml
326
+ - spec/gemspec_with_source_and_no_jar/pom.xml
327
+ - spec/gemfile_with_extras/pom.xml
328
+ - spec/pom_from_jarfile_with_exclusions/pom.xml
329
+ - spec/gemfile_with_source/Mavenfile
330
+ - spec/pom_from_jarfile_with_jruby/Jarfile
331
+ - spec/gemspec_in_profile/Mavenfile
332
+ - spec/pom_from_jarfile_with_repos/Jarfile
333
+ - spec/pom_from_jarfile_with_repos/Mavenfile
334
+ - spec/gemfile_with_lock/Mavenfile
335
+ - spec/gemfile_with_lock/Gemfile
336
+ - spec/gemfile_with_test_group/Mavenfile
337
+ - spec/gemfile_with_test_group/Gemfile
338
+ - spec/gemspec_with_prereleased_dependency_and_no_repo/Mavenfile
339
+ - spec/gemspec_with_custom_source_and_custom_jarname/Mavenfile
340
+ - spec/gemspec_prerelease_snapshot/Mavenfile
341
+ - spec/gemfile_with_path/Mavenfile
342
+ - spec/gemfile_with_path/Gemfile
343
+ - spec/pom_from_jarfile_help_only/Jarfile
344
+ - spec/gemfile_with_source_and_custom_jarname/Mavenfile
345
+ - spec/gemfile_with_source_and_custom_jarname/Gemfile
346
+ - spec/pom_from_jarfile/Jarfile
347
+ - spec/gemspec_no_rubygems_repo/Mavenfile
348
+ - spec/gemfile_include_jars/Mavenfile
349
+ - spec/gemfile_include_jars/Gemfile
350
+ - spec/gemfile_with_source_and_no_jar/Mavenfile
351
+ - spec/gemfile_with_source_and_no_jar/Gemfile
352
+ - spec/gemspec_with_access_to_model/Mavenfile
353
+ - spec/gemfile/Mavenfile
354
+ - spec/gemfile/Gemfile
355
+ - spec/gemspec_with_source_and_custom_jarname/Mavenfile
356
+ - spec/mavenfile/Mavenfile
357
+ - spec/gemspec/Mavenfile
358
+ - spec/gemspec_with_custom_source/Mavenfile
359
+ - spec/gemfile_with_platforms/Mavenfile
360
+ - spec/gemfile_with_platforms/Gemfile
361
+ - spec/gemfile_with_access_to_model/Mavenfile
362
+ - spec/gemfile_with_access_to_model/Gemfile
363
+ - spec/gemspec_with_source/Mavenfile
364
+ - spec/gemfile_with_groups_and_lockfile/Mavenfile
365
+ - spec/gemfile_with_groups_and_lockfile/Gemfile
366
+ - spec/gemspec_prerelease/Mavenfile
367
+ - spec/gemfile_with_groups/Mavenfile
368
+ - spec/gemfile_with_groups/Gemfile
369
+ - spec/gemfile_with_custom_source/Mavenfile
370
+ - spec/gemfile_with_custom_source/Gemfile
371
+ - spec/gemspec_with_prereleased_dependency/Mavenfile
372
+ - spec/gemfile_without_gemspec/Mavenfile
373
+ - spec/gemfile_without_gemspec/Gemfile
374
+ - spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile
375
+ - spec/gemfile_with_custom_source_and_custom_jarname/Gemfile
376
+ - spec/gemspec_include_jars/Mavenfile
377
+ - spec/gemspec_with_extras/Mavenfile
378
+ - spec/gemspec_with_source_and_no_jar/Mavenfile
379
+ - spec/gemfile_with_extras/Mavenfile
380
+ - spec/gemfile_with_extras/Gemfile
381
+ - spec/pom_from_jarfile_with_exclusions/Jarfile
382
+ - spec/gemfile_with_lock/Gemfile.lock
383
+ - spec/gemfile_with_test_group/Gemfile.lock
384
+ - spec/gemfile_with_groups_and_lockfile/Gemfile.lock
385
+ - spec/gemfile_with_source/src/main/java/.keep
386
+ - spec/gemspec_with_custom_source_and_custom_jarname/src/java/.keep
387
+ - spec/gemfile_with_source_and_custom_jarname/src/main/java/.keep
388
+ - spec/gemfile_with_source_and_no_jar/src/main/java/.keep
389
+ - spec/gemspec_with_source_and_custom_jarname/src/main/java/.keep
390
+ - spec/gemspec_with_custom_source/src/java/.keep
391
+ - spec/gemspec_with_source/src/main/java/.keep
392
+ - spec/gemfile_with_custom_source/src/java/.keep
393
+ - spec/gemfile_with_custom_source_and_custom_jarname/src/java/.keep
394
+ - spec/gemspec_with_source_and_no_jar/src/main/java/.keep
395
+ - spec/gemfile_with_source/bouncy-castle-java.gemspec
396
+ - spec/gemspec_in_profile/bouncy-castle-java.gemspec
397
+ - spec/gemfile_with_lock/bouncy-castle-java.gemspec
398
+ - spec/gemspec_with_prereleased_dependency_and_no_repo/bouncy-castle-java.gemspec
399
+ - spec/my/my.gemspec
400
+ - spec/gemspec_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
401
+ - spec/gemspec_prerelease_snapshot/bouncy-castle-java.gemspec
402
+ - spec/gemfile_with_source_and_custom_jarname/bouncy-castle-java.gemspec
403
+ - spec/gemspec_no_rubygems_repo/bouncy-castle-java.gemspec
404
+ - spec/gemfile_include_jars/bouncy-castle-java.gemspec
405
+ - spec/gemfile_with_source_and_no_jar/bouncy-castle-java.gemspec
406
+ - spec/gemspec_with_access_to_model/bouncy-castle-java.gemspec
407
+ - spec/gemfile/bouncy-castle-java.gemspec
408
+ - spec/gemspec_with_source_and_custom_jarname/bouncy-castle-java.gemspec
409
+ - spec/gemspec/bouncy-castle-java.gemspec
410
+ - spec/gemspec_with_custom_source/bouncy-castle-java.gemspec
411
+ - spec/gemfile_with_access_to_model/bouncy-castle-java.gemspec
412
+ - spec/gemspec_with_source/bouncy-castle-java.gemspec
413
+ - spec/gemspec_prerelease/bouncy-castle-java.gemspec
414
+ - spec/gemfile_with_custom_source/bouncy-castle-java.gemspec
415
+ - spec/gemspec_with_prereleased_dependency/bouncy-castle-java.gemspec
416
+ - spec/gemfile_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
417
+ - spec/gemspec_include_jars/bouncy-castle-java.gemspec
418
+ - spec/gemspec_with_extras/bouncy-castle-java.gemspec
419
+ - spec/gemspec_with_source_and_no_jar/bouncy-castle-java.gemspec
420
+ - spec/gemfile_with_extras/bouncy-castle-java.gemspec
421
+ has_rdoc:
422
+
@@ -0,0 +1,79 @@
1
+ <project>
2
+ <modelVersion>4.0.0</modelVersion>
3
+ <groupId>rubygems</groupId>
4
+ <artifactId>maven-tools</artifactId>
5
+ <version>VERSION</version>
6
+ <packaging>gem</packaging>
7
+ <name>helpers for maven related tasks</name>
8
+ <url>http://github.com/torquebox/maven-tools</url>
9
+ <description>adds versions conversion from rubygems to maven and vice versa, ruby DSL for POM (Project Object Model from maven), pom generators, etc</description>
10
+ <licenses>
11
+ <license>
12
+ <name>MIT</name>
13
+ <url>http://opensource.org/licenses/MIT</url>
14
+ <comments>MIT license</comments>
15
+ </license>
16
+ </licenses>
17
+ <developers>
18
+ <developer>
19
+ <name>Christian Meier</name>
20
+ <email>m.kristian@web.de</email>
21
+ </developer>
22
+ </developers>
23
+ <scm>
24
+ <connection>https://github.com/torquebox/maven-tools.git</connection>
25
+ <url>http://github.com/torquebox/maven-tools</url>
26
+ </scm>
27
+ <properties>
28
+ <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
29
+ <jruby.plugins.version>1.0.7</jruby.plugins.version>
30
+ </properties>
31
+ <dependencies>
32
+ <dependency>
33
+ <groupId>rubygems</groupId>
34
+ <artifactId>virtus</artifactId>
35
+ <version>[1.0,1.99999]</version>
36
+ <type>gem</type>
37
+ </dependency>
38
+ <dependency>
39
+ <groupId>rubygems</groupId>
40
+ <artifactId>rake</artifactId>
41
+ <version>[10.0,10.99999]</version>
42
+ <type>gem</type>
43
+ <scope>test</scope>
44
+ </dependency>
45
+ <dependency>
46
+ <groupId>rubygems</groupId>
47
+ <artifactId>minitest</artifactId>
48
+ <version>[5.3,5.99999]</version>
49
+ <type>gem</type>
50
+ <scope>test</scope>
51
+ </dependency>
52
+ </dependencies>
53
+ <repositories>
54
+ <repository>
55
+ <id>rubygems-releases</id>
56
+ <url>http://rubygems-proxy.torquebox.org/releases</url>
57
+ </repository>
58
+ </repositories>
59
+ <build>
60
+ <extensions>
61
+ <extension>
62
+ <groupId>de.saumya.mojo</groupId>
63
+ <artifactId>gem-extension</artifactId>
64
+ <version>${jruby.plugins.version}</version>
65
+ </extension>
66
+ </extensions>
67
+ <directory>${basedir}/pkg</directory>
68
+ <plugins>
69
+ <plugin>
70
+ <groupId>de.saumya.mojo</groupId>
71
+ <artifactId>gem-maven-plugin</artifactId>
72
+ <version>${jruby.plugins.version}</version>
73
+ <configuration>
74
+ <gemspec>maven-tools.gemspec</gemspec>
75
+ </configuration>
76
+ </plugin>
77
+ </plugins>
78
+ </build>
79
+ </project>