maven-tools 1.0.0.rc6 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1601cbf1e73ea797bebffc753c925173153824f7
4
- data.tar.gz: 08609fc9a6ea13a191458d7c5f1c449823be4500
3
+ metadata.gz: 206d48cf997e1148c90278188e106c7441afffc6
4
+ data.tar.gz: 36ace5b7cb4610ff933f70727ab11b86597b5deb
5
5
  SHA512:
6
- metadata.gz: a2b2551400405f9aec9f3c09a98c58790ea402f53244055847c6701f1af2eb9e6972be4a8ac7d65728a32e3c192f1953670d7e8235c2127a34fb191fb0359446
7
- data.tar.gz: e4928cbe9160003568ff70ba3c89e5935fa54495a891cc83da4b1a5fcd67f385b48c4af5a4cf9dfe6eaa474fc6667c8c56cd682002641c334cb26e6f9308c514
6
+ metadata.gz: a3c6171e65977ed44938e22501978ee4900789b599ea0216302460f0a9ab4686d899f0b0a545ce6b0fbebcc99ce37db78182f9464f4c9982038fb3d3bc963477
7
+ data.tar.gz: 69dcaef8afaa9a5baed082ba96ab4514861b07ae211f1444369fe64ac1f1d74ade0388d8a59cc771dae06c1513d9429062652f2e7e2285e7e6d16039a00ea481
data/Mavenfile CHANGED
@@ -7,16 +7,14 @@ plugin( 'de.saumya.mojo:minitest-maven-plugin', '${jruby.plugins.version}',
7
7
  execute_goals(:spec)
8
8
  end
9
9
 
10
- properties( # lock down versions
11
- 'jruby.plugins.version' => '1.0.1',
12
- 'jruby.version' => '1.7.12',
10
+ snapshot_repository :jruby, 'http://ci.jruby.org/snapshots/maven'
13
11
 
14
- # running the specs with this matrix
15
- # (jruby-1.6.7 produces a lot of yaml errors parsing gemspecs)
16
- # overwrite via cli -Djruby.versions=9000.dev-SNAPSHOT
17
- 'jruby.versions' => ['1.7.4','1.7.12'].join(','),
18
- # overwrite via cli -Djruby.modes=2.0
19
- 'jruby.modes' => '1.9,2.0,2.1'
20
- )
12
+ # (jruby-1.6.7 produces a lot of yaml errors parsing gemspecs)
13
+ properties( 'jruby.versions' => ['1.7.13','9000.dev-SNAPSHOT'].join(','),
14
+ 'jruby.modes' => ['1.9', '2.0','2.1'].join(','),
15
+ # just lock the versions
16
+ 'jruby.version' => '1.7.13',
17
+ 'tesla.dump.pom' => 'pom.xml',
18
+ 'tesla.dump.readonly' => true )
21
19
 
22
20
  # vim: syntax=Ruby
@@ -148,7 +148,7 @@ module Maven
148
148
  setup_gem_support( options )
149
149
 
150
150
  jruby_plugin!( :gem ) do
151
- execute_goal :initialize
151
+ execute_goal :initialize, :id => 'install gems'
152
152
  end
153
153
  end
154
154
 
@@ -162,16 +162,20 @@ module Maven
162
162
  file( :exists => name + '.lock' )
163
163
  end
164
164
  locked = GemfileLock.new( lockfile )
165
- add_scoped_hull( locked, pr.dependencies )
166
- add_scoped_hull( locked, pr.dependencies, :provided )
167
- add_scoped_hull( locked, pr.dependencies, :test )
165
+ done = add_scoped_hull( locked, pr.dependencies )
166
+ done += add_scoped_hull( locked, pr.dependencies,
167
+ done, :provided )
168
+ add_scoped_hull( locked, pr.dependencies, done, :test )
168
169
  end
169
170
  end
170
171
 
171
172
  if @has_path or @has_git
172
173
  gem 'bundler', VERSIONS[ :bundler_version ], :scope => :provided unless gem? 'bundler'
173
174
  jruby_plugin! :gem do
174
- execute_goal :exec, :filename => 'bundle', :args => 'install'
175
+ execute_goal( :exec,
176
+ :id => 'bundle install',
177
+ :filename => 'bundle',
178
+ :args => 'install' )
175
179
  end
176
180
  end
177
181
  ensure
@@ -181,9 +185,8 @@ module Maven
181
185
  @has_git = nil
182
186
  end
183
187
 
184
- def add_scoped_hull( locked, deps, scope = nil )
185
- options = {}
186
- options[ :scope ] = scope if scope
188
+ def add_scoped_hull( locked, deps, done = [], scope = nil )
189
+ result = {}
187
190
  scope ||= "compile runtime default"
188
191
  scope = scope.to_s
189
192
  names = deps.select do |d|
@@ -191,8 +194,19 @@ module Maven
191
194
  scope.match /#{sc}/
192
195
  end.collect { |d| d.artifact_id }
193
196
  locked.dependency_hull( names ).each do |name, version|
194
- gem( name, version, options ) unless has_gem( name )
197
+ result[ name ] = version unless done.member?( name )
195
198
  end
199
+ unless result.empty?
200
+ scope.sub!( / .*$/, '' )
201
+ jruby_plugin!( :gem ) do
202
+ execute_goal( :sets,
203
+ :id => "install gem sets for #{scope}",
204
+ :phase => :initialize,
205
+ :scope => scope,
206
+ :gems => result )
207
+ end
208
+ end
209
+ result.keys
196
210
  end
197
211
  private :add_scoped_hull
198
212
 
@@ -703,7 +717,28 @@ module Maven
703
717
  @current.resources << resource
704
718
  end
705
719
  end
720
+
721
+ def build_method( m, val )
722
+ m = "#{m}=".to_sym
723
+ if @context == :project
724
+ ( @current.build ||= Build.new ).send m, val
725
+ else
726
+ @current.send m, val
727
+ end
728
+ end
729
+ private :build_method
730
+
731
+ def final_name( val )
732
+ build_method( __method__, val )
733
+ end
706
734
 
735
+ def directory( val )
736
+ build_method( __method__, val )
737
+ end
738
+
739
+ def output_directory( val )
740
+ build_method( __method__, val )
741
+ end
707
742
  def repository( *args, &block )
708
743
  do_repository( :repository=, *args, &block )
709
744
  end
@@ -829,7 +864,8 @@ module Maven
829
864
  end
830
865
 
831
866
  def setup_jruby_plugins_version
832
- unless @current.properties.key?( 'jruby.plugins.version' )
867
+ if not @current.properties.key?( 'jruby.plugins.version' ) and
868
+ not (@context == :profile and model.properties.key?( 'jruby.plugins.version' ) )
833
869
  properties( 'jruby.plugins.version' => VERSIONS[ :jruby_plugins ] )
834
870
  end
835
871
  end
@@ -853,8 +889,9 @@ module Maven
853
889
 
854
890
  def plugin!( *gav, &block )
855
891
  gav, options = plugin_gav( *gav )
892
+ ga = gav.sub( /:[^:]*$/, '' )
856
893
  pl = plugins.detect do |p|
857
- "#{p.group_id}:#{p.artifact_id}:#{p.version}" == gav
894
+ "#{p.group_id}:#{p.artifact_id}" == ga
858
895
  end
859
896
  if pl
860
897
  do_plugin( false, pl, options, &block )
@@ -20,6 +20,6 @@
20
20
  #
21
21
  module Maven
22
22
  module Tools
23
- VERSION = '1.0.0.rc6'.freeze
23
+ VERSION = '1.0.0'.freeze
24
24
  end
25
25
  end
@@ -49,6 +49,7 @@
49
49
  <version>${jruby.plugins.version}</version>
50
50
  <executions>
51
51
  <execution>
52
+ <id>install gems</id>
52
53
  <goals>
53
54
  <goal>initialize</goal>
54
55
  </goals>
@@ -33,6 +33,7 @@
33
33
  <version>${jruby.plugins.version}</version>
34
34
  <executions>
35
35
  <execution>
36
+ <id>install gems</id>
36
37
  <goals>
37
38
  <goal>initialize</goal>
38
39
  </goals>
@@ -73,99 +74,54 @@
73
74
  <exists>Gemfile.lock</exists>
74
75
  </file>
75
76
  </activation>
76
- <dependencies>
77
- <dependency>
78
- <groupId>rubygems</groupId>
79
- <artifactId>copyright-header</artifactId>
80
- <version>1.0.12</version>
81
- <type>gem</type>
82
- <scope>provided</scope>
83
- </dependency>
84
- <dependency>
85
- <groupId>rubygems</groupId>
86
- <artifactId>github-linguist</artifactId>
87
- <version>2.6.7</version>
88
- <type>gem</type>
89
- <scope>provided</scope>
90
- </dependency>
91
- <dependency>
92
- <groupId>rubygems</groupId>
93
- <artifactId>charlock_holmes</artifactId>
94
- <version>0.6.9.4</version>
95
- <type>gem</type>
96
- <scope>provided</scope>
97
- </dependency>
98
- <dependency>
99
- <groupId>rubygems</groupId>
100
- <artifactId>escape_utils</artifactId>
101
- <version>0.3.2</version>
102
- <type>gem</type>
103
- <scope>provided</scope>
104
- </dependency>
105
- <dependency>
106
- <groupId>rubygems</groupId>
107
- <artifactId>mime-types</artifactId>
108
- <version>1.25.1</version>
109
- <type>gem</type>
110
- <scope>provided</scope>
111
- </dependency>
112
- <dependency>
113
- <groupId>rubygems</groupId>
114
- <artifactId>pygments.rb</artifactId>
115
- <version>0.4.2</version>
116
- <type>gem</type>
117
- <scope>provided</scope>
118
- </dependency>
119
- <dependency>
120
- <groupId>rubygems</groupId>
121
- <artifactId>posix-spawn</artifactId>
122
- <version>0.3.8</version>
123
- <type>gem</type>
124
- <scope>provided</scope>
125
- </dependency>
126
- <dependency>
127
- <groupId>rubygems</groupId>
128
- <artifactId>yajl-ruby</artifactId>
129
- <version>1.1.0</version>
130
- <type>gem</type>
131
- <scope>provided</scope>
132
- </dependency>
133
- <dependency>
134
- <groupId>rubygems</groupId>
135
- <artifactId>rspec</artifactId>
136
- <version>2.13.0</version>
137
- <type>gem</type>
138
- <scope>test</scope>
139
- </dependency>
140
- <dependency>
141
- <groupId>rubygems</groupId>
142
- <artifactId>rspec-core</artifactId>
143
- <version>2.13.1</version>
144
- <type>gem</type>
145
- <scope>test</scope>
146
- </dependency>
147
- <dependency>
148
- <groupId>rubygems</groupId>
149
- <artifactId>rspec-expectations</artifactId>
150
- <version>2.13.0</version>
151
- <type>gem</type>
152
- <scope>test</scope>
153
- </dependency>
154
- <dependency>
155
- <groupId>rubygems</groupId>
156
- <artifactId>diff-lcs</artifactId>
157
- <version>1.2.5</version>
158
- <type>gem</type>
159
- <scope>test</scope>
160
- </dependency>
161
- <dependency>
162
- <groupId>rubygems</groupId>
163
- <artifactId>rspec-mocks</artifactId>
164
- <version>2.13.1</version>
165
- <type>gem</type>
166
- <scope>test</scope>
167
- </dependency>
168
- </dependencies>
77
+ <build>
78
+ <plugins>
79
+ <plugin>
80
+ <groupId>de.saumya.mojo</groupId>
81
+ <artifactId>gem-maven-plugin</artifactId>
82
+ <version>${jruby.plugins.version}</version>
83
+ <executions>
84
+ <execution>
85
+ <id>install gem sets for provided</id>
86
+ <phase>initialize</phase>
87
+ <goals>
88
+ <goal>sets</goal>
89
+ </goals>
90
+ <configuration>
91
+ <scope>provided</scope>
92
+ <gems>
93
+ <copyright-header>1.0.12</copyright-header>
94
+ <github-linguist>2.6.7</github-linguist>
95
+ <charlockHolmes>0.6.9.4</charlockHolmes>
96
+ <escapeUtils>0.3.2</escapeUtils>
97
+ <mime-types>1.25.1</mime-types>
98
+ <pygments.rb>0.4.2</pygments.rb>
99
+ <posix-spawn>0.3.8</posix-spawn>
100
+ <yajl-ruby>1.1.0</yajl-ruby>
101
+ </gems>
102
+ </configuration>
103
+ </execution>
104
+ <execution>
105
+ <id>install gem sets for test</id>
106
+ <phase>initialize</phase>
107
+ <goals>
108
+ <goal>sets</goal>
109
+ </goals>
110
+ <configuration>
111
+ <scope>test</scope>
112
+ <gems>
113
+ <rspec>2.13.0</rspec>
114
+ <rspec-core>2.13.1</rspec-core>
115
+ <rspec-expectations>2.13.0</rspec-expectations>
116
+ <diff-lcs>1.2.5</diff-lcs>
117
+ <rspec-mocks>2.13.1</rspec-mocks>
118
+ </gems>
119
+ </configuration>
120
+ </execution>
121
+ </executions>
122
+ </plugin>
123
+ </plugins>
124
+ </build>
169
125
  </profile>
170
126
  </profiles>
171
127
  </project>
@@ -107,91 +107,54 @@
107
107
  <exists>Gemfile.lock</exists>
108
108
  </file>
109
109
  </activation>
110
- <dependencies>
111
- <dependency>
112
- <groupId>rubygems</groupId>
113
- <artifactId>virtus</artifactId>
114
- <version>1.0.2</version>
115
- <type>gem</type>
116
- </dependency>
117
- <dependency>
118
- <groupId>rubygems</groupId>
119
- <artifactId>axiom-types</artifactId>
120
- <version>0.1.1</version>
121
- <type>gem</type>
122
- </dependency>
123
- <dependency>
124
- <groupId>rubygems</groupId>
125
- <artifactId>descendants_tracker</artifactId>
126
- <version>0.0.4</version>
127
- <type>gem</type>
128
- </dependency>
129
- <dependency>
130
- <groupId>rubygems</groupId>
131
- <artifactId>thread_safe</artifactId>
132
- <version>0.3.3</version>
133
- <type>gem</type>
134
- </dependency>
135
- <dependency>
136
- <groupId>rubygems</groupId>
137
- <artifactId>ice_nine</artifactId>
138
- <version>0.11.0</version>
139
- <type>gem</type>
140
- </dependency>
141
- <dependency>
142
- <groupId>rubygems</groupId>
143
- <artifactId>coercible</artifactId>
144
- <version>1.0.1</version>
145
- <type>gem</type>
146
- </dependency>
147
- <dependency>
148
- <groupId>rubygems</groupId>
149
- <artifactId>equalizer</artifactId>
150
- <version>0.1.0</version>
151
- <type>gem</type>
152
- </dependency>
153
- <dependency>
154
- <groupId>rubygems</groupId>
155
- <artifactId>rake</artifactId>
156
- <version>10.2.2</version>
157
- <type>gem</type>
158
- </dependency>
159
- <dependency>
160
- <groupId>rubygems</groupId>
161
- <artifactId>rspec</artifactId>
162
- <version>2.14.1</version>
163
- <type>gem</type>
164
- <scope>test</scope>
165
- </dependency>
166
- <dependency>
167
- <groupId>rubygems</groupId>
168
- <artifactId>rspec-core</artifactId>
169
- <version>2.14.7</version>
170
- <type>gem</type>
171
- <scope>test</scope>
172
- </dependency>
173
- <dependency>
174
- <groupId>rubygems</groupId>
175
- <artifactId>rspec-expectations</artifactId>
176
- <version>2.14.5</version>
177
- <type>gem</type>
178
- <scope>test</scope>
179
- </dependency>
180
- <dependency>
181
- <groupId>rubygems</groupId>
182
- <artifactId>diff-lcs</artifactId>
183
- <version>1.2.5</version>
184
- <type>gem</type>
185
- <scope>test</scope>
186
- </dependency>
187
- <dependency>
188
- <groupId>rubygems</groupId>
189
- <artifactId>rspec-mocks</artifactId>
190
- <version>2.14.6</version>
191
- <type>gem</type>
192
- <scope>test</scope>
193
- </dependency>
194
- </dependencies>
110
+ <build>
111
+ <plugins>
112
+ <plugin>
113
+ <groupId>de.saumya.mojo</groupId>
114
+ <artifactId>gem-maven-plugin</artifactId>
115
+ <version>${jruby.plugins.version}</version>
116
+ <executions>
117
+ <execution>
118
+ <id>install gem sets for compile</id>
119
+ <phase>initialize</phase>
120
+ <goals>
121
+ <goal>sets</goal>
122
+ </goals>
123
+ <configuration>
124
+ <scope>compile</scope>
125
+ <gems>
126
+ <virtus>1.0.2</virtus>
127
+ <axiom-types>0.1.1</axiom-types>
128
+ <descendantsTracker>0.0.4</descendantsTracker>
129
+ <threadSafe>0.3.3</threadSafe>
130
+ <iceNine>0.11.0</iceNine>
131
+ <coercible>1.0.1</coercible>
132
+ <equalizer>0.1.0</equalizer>
133
+ <rake>10.2.2</rake>
134
+ </gems>
135
+ </configuration>
136
+ </execution>
137
+ <execution>
138
+ <id>install gem sets for test</id>
139
+ <phase>initialize</phase>
140
+ <goals>
141
+ <goal>sets</goal>
142
+ </goals>
143
+ <configuration>
144
+ <scope>test</scope>
145
+ <gems>
146
+ <rspec>2.14.1</rspec>
147
+ <rspec-core>2.14.7</rspec-core>
148
+ <rspec-expectations>2.14.5</rspec-expectations>
149
+ <diff-lcs>1.2.5</diff-lcs>
150
+ <rspec-mocks>2.14.6</rspec-mocks>
151
+ </gems>
152
+ </configuration>
153
+ </execution>
154
+ </executions>
155
+ </plugin>
156
+ </plugins>
157
+ </build>
195
158
  </profile>
196
159
  </profiles>
197
160
  </project>
@@ -48,11 +48,13 @@
48
48
  <version>${jruby.plugins.version}</version>
49
49
  <executions>
50
50
  <execution>
51
+ <id>install gems</id>
51
52
  <goals>
52
53
  <goal>initialize</goal>
53
54
  </goals>
54
55
  </execution>
55
56
  <execution>
57
+ <id>bundle install</id>
56
58
  <goals>
57
59
  <goal>exec</goal>
58
60
  </goals>
@@ -24,6 +24,7 @@
24
24
  <version>${jruby.plugins.version}</version>
25
25
  <executions>
26
26
  <execution>
27
+ <id>install gems</id>
27
28
  <goals>
28
29
  <goal>initialize</goal>
29
30
  </goals>
@@ -163,342 +164,93 @@
163
164
  <exists>Gemfile.lock</exists>
164
165
  </file>
165
166
  </activation>
166
- <dependencies>
167
- <dependency>
168
- <groupId>rubygems</groupId>
169
- <artifactId>rack</artifactId>
170
- <version>1.5.2</version>
171
- <type>gem</type>
172
- </dependency>
173
- <dependency>
174
- <groupId>rubygems</groupId>
175
- <artifactId>activerecord</artifactId>
176
- <version>4.1.1</version>
177
- <type>gem</type>
178
- </dependency>
179
- <dependency>
180
- <groupId>rubygems</groupId>
181
- <artifactId>activemodel</artifactId>
182
- <version>4.1.1</version>
183
- <type>gem</type>
184
- </dependency>
185
- <dependency>
186
- <groupId>rubygems</groupId>
187
- <artifactId>activesupport</artifactId>
188
- <version>4.1.1</version>
189
- <type>gem</type>
190
- </dependency>
191
- <dependency>
192
- <groupId>rubygems</groupId>
193
- <artifactId>i18n</artifactId>
194
- <version>0.6.9</version>
195
- <type>gem</type>
196
- </dependency>
197
- <dependency>
198
- <groupId>rubygems</groupId>
199
- <artifactId>json</artifactId>
200
- <version>1.8.1</version>
201
- <type>gem</type>
202
- </dependency>
203
- <dependency>
204
- <groupId>rubygems</groupId>
205
- <artifactId>minitest</artifactId>
206
- <version>5.3.3</version>
207
- <type>gem</type>
208
- </dependency>
209
- <dependency>
210
- <groupId>rubygems</groupId>
211
- <artifactId>thread_safe</artifactId>
212
- <version>0.3.3</version>
213
- <type>gem</type>
214
- </dependency>
215
- <dependency>
216
- <groupId>rubygems</groupId>
217
- <artifactId>tzinfo</artifactId>
218
- <version>1.1.0</version>
219
- <type>gem</type>
220
- </dependency>
221
- <dependency>
222
- <groupId>rubygems</groupId>
223
- <artifactId>builder</artifactId>
224
- <version>3.2.2</version>
225
- <type>gem</type>
226
- </dependency>
227
- <dependency>
228
- <groupId>rubygems</groupId>
229
- <artifactId>arel</artifactId>
230
- <version>5.0.1.20140414130214</version>
231
- <type>gem</type>
232
- </dependency>
233
- <dependency>
234
- <groupId>rubygems</groupId>
235
- <artifactId>activerecord-jdbcmysql-adapter</artifactId>
236
- <version>1.3.7</version>
237
- <type>gem</type>
238
- </dependency>
239
- <dependency>
240
- <groupId>rubygems</groupId>
241
- <artifactId>activerecord-jdbc-adapter</artifactId>
242
- <version>1.3.7</version>
243
- <type>gem</type>
244
- </dependency>
245
- <dependency>
246
- <groupId>rubygems</groupId>
247
- <artifactId>jdbc-mysql</artifactId>
248
- <version>5.1.30</version>
249
- <type>gem</type>
250
- </dependency>
251
- <dependency>
252
- <groupId>rubygems</groupId>
253
- <artifactId>newrelic_rpm</artifactId>
254
- <version>3.8.1.221</version>
255
- <type>gem</type>
256
- </dependency>
257
- <dependency>
258
- <groupId>rubygems</groupId>
259
- <artifactId>aws-sdk</artifactId>
260
- <version>1.40.3</version>
261
- <type>gem</type>
262
- </dependency>
263
- <dependency>
264
- <groupId>rubygems</groupId>
265
- <artifactId>nokogiri</artifactId>
266
- <version>1.6.1</version>
267
- <type>gem</type>
268
- </dependency>
269
- <dependency>
270
- <groupId>rubygems</groupId>
271
- <artifactId>mini_portile</artifactId>
272
- <version>0.5.3</version>
273
- <type>gem</type>
274
- </dependency>
275
- <dependency>
276
- <groupId>rubygems</groupId>
277
- <artifactId>grape</artifactId>
278
- <version>0.7.0</version>
279
- <type>gem</type>
280
- </dependency>
281
- <dependency>
282
- <groupId>rubygems</groupId>
283
- <artifactId>hashie</artifactId>
284
- <version>2.1.1</version>
285
- <type>gem</type>
286
- </dependency>
287
- <dependency>
288
- <groupId>rubygems</groupId>
289
- <artifactId>multi_json</artifactId>
290
- <version>1.10.0</version>
291
- <type>gem</type>
292
- </dependency>
293
- <dependency>
294
- <groupId>rubygems</groupId>
295
- <artifactId>multi_xml</artifactId>
296
- <version>0.5.5</version>
297
- <type>gem</type>
298
- </dependency>
299
- <dependency>
300
- <groupId>rubygems</groupId>
301
- <artifactId>rack-accept</artifactId>
302
- <version>0.4.5</version>
303
- <type>gem</type>
304
- </dependency>
305
- <dependency>
306
- <groupId>rubygems</groupId>
307
- <artifactId>rack-mount</artifactId>
308
- <version>0.8.3</version>
309
- <type>gem</type>
310
- </dependency>
311
- <dependency>
312
- <groupId>rubygems</groupId>
313
- <artifactId>virtus</artifactId>
314
- <version>1.0.2</version>
315
- <type>gem</type>
316
- </dependency>
317
- <dependency>
318
- <groupId>rubygems</groupId>
319
- <artifactId>axiom-types</artifactId>
320
- <version>0.1.1</version>
321
- <type>gem</type>
322
- </dependency>
323
- <dependency>
324
- <groupId>rubygems</groupId>
325
- <artifactId>descendants_tracker</artifactId>
326
- <version>0.0.4</version>
327
- <type>gem</type>
328
- </dependency>
329
- <dependency>
330
- <groupId>rubygems</groupId>
331
- <artifactId>ice_nine</artifactId>
332
- <version>0.11.0</version>
333
- <type>gem</type>
334
- </dependency>
335
- <dependency>
336
- <groupId>rubygems</groupId>
337
- <artifactId>coercible</artifactId>
338
- <version>1.0.0</version>
339
- <type>gem</type>
340
- </dependency>
341
- <dependency>
342
- <groupId>rubygems</groupId>
343
- <artifactId>equalizer</artifactId>
344
- <version>0.0.9</version>
345
- <type>gem</type>
346
- </dependency>
347
- <dependency>
348
- <groupId>rubygems</groupId>
349
- <artifactId>codeclimate-test-reporter</artifactId>
350
- <version>0.3.0</version>
351
- <type>gem</type>
352
- <scope>test</scope>
353
- </dependency>
354
- <dependency>
355
- <groupId>rubygems</groupId>
356
- <artifactId>simplecov</artifactId>
357
- <version>0.8.2</version>
358
- <type>gem</type>
359
- <scope>test</scope>
360
- </dependency>
361
- <dependency>
362
- <groupId>rubygems</groupId>
363
- <artifactId>docile</artifactId>
364
- <version>1.1.3</version>
365
- <type>gem</type>
366
- <scope>test</scope>
367
- </dependency>
368
- <dependency>
369
- <groupId>rubygems</groupId>
370
- <artifactId>simplecov-html</artifactId>
371
- <version>0.8.0</version>
372
- <type>gem</type>
373
- <scope>test</scope>
374
- </dependency>
375
- <dependency>
376
- <groupId>rubygems</groupId>
377
- <artifactId>rspec-mocks</artifactId>
378
- <version>2.14.6</version>
379
- <type>gem</type>
380
- <scope>test</scope>
381
- </dependency>
382
- <dependency>
383
- <groupId>rubygems</groupId>
384
- <artifactId>rspec</artifactId>
385
- <version>2.14.1</version>
386
- <type>gem</type>
387
- <scope>test</scope>
388
- </dependency>
389
- <dependency>
390
- <groupId>rubygems</groupId>
391
- <artifactId>rspec-core</artifactId>
392
- <version>2.14.8</version>
393
- <type>gem</type>
394
- <scope>test</scope>
395
- </dependency>
396
- <dependency>
397
- <groupId>rubygems</groupId>
398
- <artifactId>rspec-expectations</artifactId>
399
- <version>2.14.5</version>
400
- <type>gem</type>
401
- <scope>test</scope>
402
- </dependency>
403
- <dependency>
404
- <groupId>rubygems</groupId>
405
- <artifactId>diff-lcs</artifactId>
406
- <version>1.2.5</version>
407
- <type>gem</type>
408
- <scope>test</scope>
409
- </dependency>
410
- <dependency>
411
- <groupId>rubygems</groupId>
412
- <artifactId>thor</artifactId>
413
- <version>0.18.1</version>
414
- <type>gem</type>
415
- <scope>test</scope>
416
- </dependency>
417
- <dependency>
418
- <groupId>rubygems</groupId>
419
- <artifactId>vcr</artifactId>
420
- <version>2.8.0</version>
421
- <type>gem</type>
422
- <scope>test</scope>
423
- </dependency>
424
- <dependency>
425
- <groupId>rubygems</groupId>
426
- <artifactId>webmock</artifactId>
427
- <version>1.16.1</version>
428
- <type>gem</type>
429
- <scope>test</scope>
430
- </dependency>
431
- <dependency>
432
- <groupId>rubygems</groupId>
433
- <artifactId>addressable</artifactId>
434
- <version>2.3.6</version>
435
- <type>gem</type>
436
- <scope>test</scope>
437
- </dependency>
438
- <dependency>
439
- <groupId>rubygems</groupId>
440
- <artifactId>crack</artifactId>
441
- <version>0.4.2</version>
442
- <type>gem</type>
443
- <scope>test</scope>
444
- </dependency>
445
- <dependency>
446
- <groupId>rubygems</groupId>
447
- <artifactId>safe_yaml</artifactId>
448
- <version>1.0.3</version>
449
- <type>gem</type>
450
- <scope>test</scope>
451
- </dependency>
452
- <dependency>
453
- <groupId>rubygems</groupId>
454
- <artifactId>fake_sqs</artifactId>
455
- <version>0.1.0</version>
456
- <type>gem</type>
457
- <scope>test</scope>
458
- </dependency>
459
- <dependency>
460
- <groupId>rubygems</groupId>
461
- <artifactId>sinatra</artifactId>
462
- <version>1.4.5</version>
463
- <type>gem</type>
464
- <scope>test</scope>
465
- </dependency>
466
- <dependency>
467
- <groupId>rubygems</groupId>
468
- <artifactId>rack-protection</artifactId>
469
- <version>1.5.3</version>
470
- <type>gem</type>
471
- <scope>test</scope>
472
- </dependency>
473
- <dependency>
474
- <groupId>rubygems</groupId>
475
- <artifactId>tilt</artifactId>
476
- <version>1.4.1</version>
477
- <type>gem</type>
478
- <scope>test</scope>
479
- </dependency>
480
- <dependency>
481
- <groupId>rubygems</groupId>
482
- <artifactId>rack-test</artifactId>
483
- <version>0.6.2</version>
484
- <type>gem</type>
485
- <scope>test</scope>
486
- </dependency>
487
- <dependency>
488
- <groupId>rubygems</groupId>
489
- <artifactId>database_cleaner</artifactId>
490
- <version>1.2.0</version>
491
- <type>gem</type>
492
- <scope>test</scope>
493
- </dependency>
494
- <dependency>
495
- <groupId>rubygems</groupId>
496
- <artifactId>shoulda-matchers</artifactId>
497
- <version>2.6.1</version>
498
- <type>gem</type>
499
- <scope>test</scope>
500
- </dependency>
501
- </dependencies>
167
+ <build>
168
+ <plugins>
169
+ <plugin>
170
+ <groupId>de.saumya.mojo</groupId>
171
+ <artifactId>gem-maven-plugin</artifactId>
172
+ <version>${jruby.plugins.version}</version>
173
+ <executions>
174
+ <execution>
175
+ <id>install gem sets for compile</id>
176
+ <phase>initialize</phase>
177
+ <goals>
178
+ <goal>sets</goal>
179
+ </goals>
180
+ <configuration>
181
+ <scope>compile</scope>
182
+ <gems>
183
+ <rack>1.5.2</rack>
184
+ <activerecord>4.1.1</activerecord>
185
+ <activemodel>4.1.1</activemodel>
186
+ <activesupport>4.1.1</activesupport>
187
+ <i18n>0.6.9</i18n>
188
+ <json>1.8.1</json>
189
+ <minitest>5.3.3</minitest>
190
+ <threadSafe>0.3.3</threadSafe>
191
+ <tzinfo>1.1.0</tzinfo>
192
+ <builder>3.2.2</builder>
193
+ <arel>5.0.1.20140414130214</arel>
194
+ <activerecord-jdbcmysql-adapter>1.3.7</activerecord-jdbcmysql-adapter>
195
+ <activerecord-jdbc-adapter>1.3.7</activerecord-jdbc-adapter>
196
+ <jdbc-mysql>5.1.30</jdbc-mysql>
197
+ <newrelicRpm>3.8.1.221</newrelicRpm>
198
+ <aws-sdk>1.40.3</aws-sdk>
199
+ <nokogiri>1.6.1</nokogiri>
200
+ <miniPortile>0.5.3</miniPortile>
201
+ <grape>0.7.0</grape>
202
+ <hashie>2.1.1</hashie>
203
+ <multiJson>1.10.0</multiJson>
204
+ <multiXml>0.5.5</multiXml>
205
+ <rack-accept>0.4.5</rack-accept>
206
+ <rack-mount>0.8.3</rack-mount>
207
+ <virtus>1.0.2</virtus>
208
+ <axiom-types>0.1.1</axiom-types>
209
+ <descendantsTracker>0.0.4</descendantsTracker>
210
+ <iceNine>0.11.0</iceNine>
211
+ <coercible>1.0.0</coercible>
212
+ <equalizer>0.0.9</equalizer>
213
+ </gems>
214
+ </configuration>
215
+ </execution>
216
+ <execution>
217
+ <id>install gem sets for test</id>
218
+ <phase>initialize</phase>
219
+ <goals>
220
+ <goal>sets</goal>
221
+ </goals>
222
+ <configuration>
223
+ <scope>test</scope>
224
+ <gems>
225
+ <codeclimate-test-reporter>0.3.0</codeclimate-test-reporter>
226
+ <simplecov>0.8.2</simplecov>
227
+ <docile>1.1.3</docile>
228
+ <simplecov-html>0.8.0</simplecov-html>
229
+ <rspec-mocks>2.14.6</rspec-mocks>
230
+ <rspec>2.14.1</rspec>
231
+ <rspec-core>2.14.8</rspec-core>
232
+ <rspec-expectations>2.14.5</rspec-expectations>
233
+ <diff-lcs>1.2.5</diff-lcs>
234
+ <thor>0.18.1</thor>
235
+ <vcr>2.8.0</vcr>
236
+ <webmock>1.16.1</webmock>
237
+ <addressable>2.3.6</addressable>
238
+ <crack>0.4.2</crack>
239
+ <safeYaml>1.0.3</safeYaml>
240
+ <fakeSqs>0.1.0</fakeSqs>
241
+ <sinatra>1.4.5</sinatra>
242
+ <rack-protection>1.5.3</rack-protection>
243
+ <tilt>1.4.1</tilt>
244
+ <rack-test>0.6.2</rack-test>
245
+ <databaseCleaner>1.2.0</databaseCleaner>
246
+ <shoulda-matchers>2.6.1</shoulda-matchers>
247
+ </gems>
248
+ </configuration>
249
+ </execution>
250
+ </executions>
251
+ </plugin>
252
+ </plugins>
253
+ </build>
502
254
  </profile>
503
255
  </profiles>
504
256
  </project>
@@ -41,6 +41,7 @@
41
41
  <version>${jruby.plugins.version}</version>
42
42
  <executions>
43
43
  <execution>
44
+ <id>install gems</id>
44
45
  <goals>
45
46
  <goal>initialize</goal>
46
47
  </goals>
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.rc6
4
+ version: 1.0.0
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-06-20 00:00:00.000000000 Z
11
+ date: 2014-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: virtus
@@ -233,9 +233,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
233
233
  version: '0'
234
234
  required_rubygems_version: !ruby/object:Gem::Requirement
235
235
  requirements:
236
- - - '>'
236
+ - - '>='
237
237
  - !ruby/object:Gem::Version
238
- version: 1.3.1
238
+ version: '0'
239
239
  requirements: []
240
240
  rubyforge_project:
241
241
  rubygems_version: 2.1.9