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 +4 -4
- data/Mavenfile +8 -10
- data/lib/maven/tools/dsl.rb +48 -11
- data/lib/maven/tools/version.rb +1 -1
- data/spec/gemfile_with_groups/pom.xml +1 -0
- data/spec/gemfile_with_groups_and_lockfile/pom.xml +49 -93
- data/spec/gemfile_with_lock/pom.xml +48 -85
- data/spec/gemfile_with_path/pom.xml +2 -0
- data/spec/gemfile_with_test_group/pom.xml +88 -336
- data/spec/gemfile_without_gemspec/pom.xml +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 206d48cf997e1148c90278188e106c7441afffc6
|
4
|
+
data.tar.gz: 36ace5b7cb4610ff933f70727ab11b86597b5deb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
'
|
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
|
data/lib/maven/tools/dsl.rb
CHANGED
@@ -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,
|
167
|
-
|
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,
|
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
|
-
|
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
|
-
|
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
|
-
|
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}
|
894
|
+
"#{p.group_id}:#{p.artifact_id}" == ga
|
858
895
|
end
|
859
896
|
if pl
|
860
897
|
do_plugin( false, pl, options, &block )
|
data/lib/maven/tools/version.rb
CHANGED
@@ -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
|
-
<
|
77
|
-
<
|
78
|
-
<
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
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
|
-
<
|
111
|
-
<
|
112
|
-
<
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
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
|
-
<
|
167
|
-
<
|
168
|
-
<
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
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>
|
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
|
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-
|
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:
|
238
|
+
version: '0'
|
239
239
|
requirements: []
|
240
240
|
rubyforge_project:
|
241
241
|
rubygems_version: 2.1.9
|