maven-tools 1.0.11 → 1.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/lib/maven/tools/dsl.rb +35 -5
  3. data/lib/maven/tools/dsl/gemspec.rb +2 -2
  4. data/lib/maven/tools/dsl/jars_lock.rb +60 -0
  5. data/lib/maven/tools/dsl/profile_gemspec.rb +0 -5
  6. data/lib/maven/tools/dsl/project_gemspec.rb +0 -5
  7. data/lib/maven/tools/gemfile_lock.rb +8 -1
  8. data/lib/maven/tools/version.rb +1 -1
  9. data/lib/maven/tools/versions.rb +4 -3
  10. data/maven-tools.gemspec +1 -1
  11. data/spec/dsl/gemspec_spec/jars_and_poms.xml +1 -1
  12. data/spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml +1 -1
  13. data/spec/dsl/gemspec_spec/maven-tools.xml +1 -1
  14. data/spec/dsl/jarfile_lock_spec/Jarfile.legacy.lock +52 -0
  15. data/spec/dsl/jarfile_lock_spec/Jarfile.lock +75 -0
  16. data/spec/dsl/profile_gemspec_spec/jars_and_poms.xml +1 -1
  17. data/spec/dsl/profile_gemspec_spec/jars_and_poms_include_jars.xml +1 -1
  18. data/spec/dsl/profile_gemspec_spec/maven-tools.xml +1 -1
  19. data/spec/dsl/profile_gemspec_spec/no_gems.xml +1 -1
  20. data/spec/dsl/profile_gemspec_spec/snapshot.xml +1 -1
  21. data/spec/dsl/profile_gemspec_spec/unknown_license.xml +1 -1
  22. data/spec/dsl/project_gemspec_spec/extended.xml +1 -1
  23. data/spec/dsl/project_gemspec_spec/jars_and_poms.xml +1 -1
  24. data/spec/dsl/project_gemspec_spec/jars_and_poms_include_jars.xml +1 -1
  25. data/spec/dsl/project_gemspec_spec/maven-tools.xml +1 -1
  26. data/spec/dsl/project_gemspec_spec/no_gems.xml +1 -1
  27. data/spec/dsl/project_gemspec_spec/profile.xml +1 -1
  28. data/spec/dsl/project_gemspec_spec/snapshot.xml +1 -1
  29. data/spec/dsl/project_gemspec_spec/unknown_license.xml +1 -1
  30. data/spec/gemfile/pom.xml +1 -1
  31. data/spec/gemfile_include_jars/pom.xml +1 -1
  32. data/spec/gemfile_with_access_to_model/pom.xml +1 -1
  33. data/spec/gemfile_with_custom_source/pom.xml +1 -1
  34. data/spec/gemfile_with_custom_source_and_custom_jarname/pom.xml +1 -1
  35. data/spec/gemfile_with_extras/pom.xml +1 -1
  36. data/spec/gemfile_with_groups/pom.xml +2 -1
  37. data/spec/gemfile_with_groups_and_lockfile/pom.xml +2 -1
  38. data/spec/gemfile_with_jars_lock/Gemfile +0 -0
  39. data/spec/gemfile_with_jars_lock/Jars.lock +2 -0
  40. data/spec/gemfile_with_jars_lock/Mavenfile +5 -0
  41. data/spec/gemfile_with_jars_lock/pom.xml +70 -0
  42. data/spec/gemfile_with_lock/Gemfile.lock +3 -0
  43. data/spec/gemfile_with_lock/pom.xml +9 -1
  44. data/spec/gemfile_with_path/pom.xml +3 -2
  45. data/spec/gemfile_with_platforms/pom.xml +2 -1
  46. data/spec/gemfile_with_source/pom.xml +1 -1
  47. data/spec/gemfile_with_source_and_custom_jarname/pom.xml +1 -1
  48. data/spec/gemfile_with_source_and_no_jar/pom.xml +1 -1
  49. data/spec/gemfile_with_test_group/pom.xml +2 -1
  50. data/spec/gemfile_without_gemspec/pom.xml +2 -1
  51. data/spec/gemspec/pom.xml +1 -1
  52. data/spec/gemspec_in_profile/pom.xml +1 -1
  53. data/spec/gemspec_include_jars/pom.xml +1 -1
  54. data/spec/gemspec_no_rubygems_repo/pom.xml +1 -1
  55. data/spec/gemspec_prerelease/pom.xml +1 -1
  56. data/spec/gemspec_prerelease_snapshot/pom.xml +1 -1
  57. data/spec/gemspec_with_access_to_model/pom.xml +1 -1
  58. data/spec/gemspec_with_custom_source/pom.xml +1 -1
  59. data/spec/gemspec_with_custom_source_and_custom_jarname/pom.xml +1 -1
  60. data/spec/gemspec_with_extras/pom.xml +1 -1
  61. data/spec/gemspec_with_jar_dependencies/pom.xml +1 -1
  62. data/spec/gemspec_with_jars_lock/Jars.lock +2 -0
  63. data/spec/gemspec_with_jars_lock/Mavenfile +5 -0
  64. data/spec/gemspec_with_jars_lock/bouncy-castle-java.gemspec +20 -0
  65. data/spec/gemspec_with_jars_lock/bouncy-castle-version.rb +4 -0
  66. data/spec/gemspec_with_jars_lock/pom.xml +109 -0
  67. data/spec/gemspec_with_prereleased_dependency/pom.xml +1 -1
  68. data/spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml +1 -1
  69. data/spec/gemspec_with_source/pom.xml +1 -1
  70. data/spec/gemspec_with_source_and_custom_jarname/pom.xml +1 -1
  71. data/spec/gemspec_with_source_and_no_jar/pom.xml +1 -1
  72. data/spec/mavenfile_jrubyJar/Mavenfile +9 -0
  73. data/spec/mavenfile_jrubyJar/pom.xml +41 -0
  74. data/spec/mavenfile_jrubyWar/Mavenfile +9 -0
  75. data/spec/mavenfile_jrubyWar/pom.xml +41 -0
  76. data/spec/pom_from_jarfile_and_empty_lock/Jarfile.lock +0 -0
  77. data/spec/pom_from_jarfile_and_lock/Jarfile.lock +4 -0
  78. data/spec/pom_from_jarfile_and_skip_lock/Jarfile.lock +4 -0
  79. data/spec/pom_from_jarfile_with_repos/pom.rb +3 -0
  80. data/spec/pom_from_jarfile_with_repos/pom.xml +0 -1
  81. metadata +200 -163
  82. data/spec/pom_from_jarfile_with_repos/Mavenfile +0 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fbf78be52e455a8af44a9d4e16c3b23f2c6edf9b
4
- data.tar.gz: e171856084989ae3b92520fcbe208c9517ddf20d
3
+ metadata.gz: a18e9180582c32d4fd33f48db8f8070e4f4c9bcd
4
+ data.tar.gz: 21736ea084645a61641b463e6b7aa1ca10149de8
5
5
  SHA512:
6
- metadata.gz: cd1bac1d3e1407f26fbd3acb4340e9a4569d6c2effb1d3a11ae0d3bdf697c87774d87e76a8cea8f5938f435401e710b93deb115ed48ebfa908d6fc9dbce03162
7
- data.tar.gz: fb0eef80a2741896901ece8bb566aa8abc5558b8d291b2be8fca0e7d1d927945708a937389ae86782b29114ff5269341a7e8b57c02562a8a80d22891109fe575
6
+ metadata.gz: 504783a9fc765d0e9bc7927a01805c408ae040fa63d36c50313c9a82f9b9609b254875c76b406cbac429115fe446c1b625e7a4523bdf5762adc4f3524a0b3ac2
7
+ data.tar.gz: 845c3169b54b99a6b019e14797d5829a74ce4fb5e6ab894846cc04136bdfc719030369ee17764c8435aad915f101bea5ecdad2d092d0cee99113fb993fb9ae53
@@ -4,6 +4,7 @@ require 'maven/tools/artifact'
4
4
  require 'maven/tools/jarfile'
5
5
  require 'maven/tools/versions'
6
6
  require 'maven/tools/gemfile_lock'
7
+ require 'maven/tools/dsl/jars_lock'
7
8
 
8
9
  module Maven
9
10
  module Tools
@@ -126,8 +127,12 @@ module Maven
126
127
  name = 'Gemfile'
127
128
  end
128
129
  name = ::File.join( basedir, name ) unless ::File.exists?( name )
129
-
130
- @inside_gemfile = true
130
+ if @context == :project
131
+ build do
132
+ directory '${basedir}/pkg'
133
+ end
134
+ end
135
+ @inside_gemfile = true
131
136
  # the eval might need those options for gemspec declaration
132
137
  lockfile = ::File.expand_path( name + '.lock' )
133
138
  if File.exists? lockfile
@@ -169,7 +174,7 @@ module Maven
169
174
  end
170
175
 
171
176
  if pr && pr.dependencies.empty?
172
- if @current.respond_to? :delete
177
+ if @current.profiles.respond_to? :delete
173
178
  @current.profiles.delete( pr )
174
179
  else
175
180
  @current.profiles.remove( pr )
@@ -177,15 +182,19 @@ module Maven
177
182
  end
178
183
 
179
184
  if pr && !pr.dependencies.empty?
185
+ locked = GemfileLock.new( lockfile )
186
+ has_bundler = gem?( 'bundler' )
180
187
  profile :gemfile_lock do
181
188
  activation do
182
189
  file( :exists => name + '.lock' )
183
190
  end
184
- locked = GemfileLock.new( lockfile )
185
191
  done = add_scoped_hull( locked, pr.dependencies )
186
192
  done += add_scoped_hull( locked, pr.dependencies,
187
193
  done, :provided )
188
194
  add_scoped_hull( locked, pr.dependencies, done, :test )
195
+ if locked['bundler'] && ! has_bundler
196
+ gem( 'bundler', locked['bundler'].version )
197
+ end
189
198
  end
190
199
  end
191
200
 
@@ -198,6 +207,7 @@ module Maven
198
207
  :args => 'install' )
199
208
  end
200
209
  end
210
+ DSL::JarsLock.new(self)
201
211
  ensure
202
212
  @inside_gemfile = nil
203
213
  @gemspec_args = nil
@@ -629,6 +639,9 @@ module Maven
629
639
  resource = Resource.new
630
640
  fill_options( resource, options )
631
641
  nested_block( :test_resource, resource, block ) if block
642
+ unless resource.directory
643
+ resource.directory = '${basedir}'
644
+ end
632
645
  if @context == :project
633
646
  ( @current.build ||= Build.new ).test_resources << resource
634
647
  else
@@ -640,13 +653,30 @@ module Maven
640
653
  resource = Resource.new
641
654
  fill_options( resource, options )
642
655
  nested_block( :resource, resource, block ) if block
656
+ unless resource.directory
657
+ resource.directory = '${basedir}'
658
+ end
643
659
  if @context == :project
644
660
  ( @current.build ||= Build.new ).resources << resource
645
661
  else
646
662
  @current.resources << resource
647
663
  end
648
664
  end
649
-
665
+
666
+ def packaging( val )
667
+ @current.packaging = val
668
+ if val =~ /jruby[WJ]ar/
669
+ if not @current.properties.key?( 'jruby9.plugins.version' ) and
670
+ not (@context == :profile and model.properties.key?( 'jruby9.plugins.version' ) )
671
+ properties( 'jruby9.plugins.version' => VERSIONS[ :jruby9_plugins ] )
672
+ end
673
+ extension 'de.saumya.mojo', 'jruby9-extensions', '${jruby9.plugins.version}'
674
+ build do
675
+ directory '${basedir}/pkg'
676
+ end
677
+ end
678
+ end
679
+
650
680
  def build_method( m, val )
651
681
  m = "#{m}=".to_sym
652
682
  if @context == :project
@@ -41,13 +41,13 @@ module Maven
41
41
  spec = gem_specification( name )
42
42
  name ||= "#{spec.name}-#{spec.version}.gemspec"
43
43
  process( spec, name, options )
44
+ JarsLock.new( parent ) if parent.respond_to? :profile
44
45
  end
45
46
 
46
47
  attr_reader :parent
47
48
 
48
49
  def help
49
- warn "\n# Jarfile DSL #\n"
50
- warn self.class.help_block( :local => "path-to-local-jar", :jar => nil, :pom => nil, :repository => nil, :snapshot_repository => nil, :jruby => nil, :scope => nil)[0..-2]
50
+ warn "\n# gemspec(filename) - default find gemspec in current directory #\n"
51
51
  end
52
52
 
53
53
  def gem( scope, coord )
@@ -0,0 +1,60 @@
1
+ #
2
+ # Copyright (C) 2014 Christian Meier
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining a copy of
5
+ # this software and associated documentation files (the "Software"), to deal in
6
+ # the Software without restriction, including without limitation the rights to
7
+ # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
+ # the Software, and to permit persons to whom the Software is furnished to do so,
9
+ # subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be included in all
12
+ # copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
+ # FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
+ # COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
+ # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
+ #
21
+ module Maven
22
+ module Tools
23
+ module DSL
24
+ class JarsLock
25
+
26
+ def initialize( parent, file = 'Jars.lock' )
27
+ file = File.join( parent.basedir, file )
28
+ if File.exists?(file)
29
+ parent.profile File.basename(file) do
30
+ parent.activation do
31
+ parent.file( :exists => File.basename(file) )
32
+ end
33
+ File.read(file).each_line do |line|
34
+ data = line.sub(/-\ /, '').strip.split(':')
35
+ case data.size
36
+ when 3
37
+ data = Hash[ [:groupId, :artifactId, :version].zip( data ) ]
38
+ parent.jar data[:groupId], data[:artifactId], data[:version], :scope => :compile
39
+ when 4
40
+ data = Hash[ [:groupId, :artifactId, :version, :scope].zip( data ) ]
41
+ parent.jar data[:groupId], data[:artifactId], data[:version], :scope => data[:scope]
42
+ when 5
43
+ data = Hash[ [:groupId, :artifactId, :classifier, :version, :scope].zip( data ) ]
44
+ parent.jar data[:groupId], data[:artifactId], data[:version], :classifier => data[:classifier], :scope => data[:scope]
45
+ else
46
+ warn "can not parse: #{line}"
47
+ end
48
+ end
49
+ end
50
+ end
51
+ end
52
+
53
+ def help
54
+ warn "\n# jars.lock(file) - default JArs.lock #\n"
55
+ end
56
+
57
+ end
58
+ end
59
+ end
60
+ end
@@ -31,11 +31,6 @@ module Maven
31
31
  setup_gem_support( @parent, options, spec )
32
32
  super
33
33
  end
34
-
35
- def help
36
- warn "\n# Jarfile DSL #\n"
37
- warn self.class.help_block( :local => "path-to-local-jar", :jar => nil, :pom => nil, :repository => nil, :snapshot_repository => nil, :jruby => nil, :scope => nil)[0..-2]
38
- end
39
34
  end
40
35
  end
41
36
  end
@@ -77,11 +77,6 @@ module Maven
77
77
  super
78
78
  end
79
79
  end
80
-
81
- def help
82
- warn "\n# Jarfile DSL #\n"
83
- warn self.class.help_block( :local => "path-to-local-jar", :jar => nil, :pom => nil, :repository => nil, :snapshot_repository => nil, :jruby => nil, :scope => nil)[0..-2]
84
- end
85
80
  end
86
81
  end
87
82
  end
@@ -38,10 +38,17 @@ module Maven
38
38
  def initialize(file)
39
39
  super()
40
40
  current = nil
41
+ bundler = false
41
42
  f = file.is_a?(File) ? file.path: file
42
43
  if File.exists? f
43
44
  File.readlines(f).each do |line|
44
- if line =~ /^ [^ ]/
45
+ if line =~ /^BUNDLED WITH/
46
+ bundler = true
47
+ elsif bundler
48
+ line.strip!
49
+ current = Dependency.new("bundler (#{line})")
50
+ self[current.name] = current
51
+ elsif line =~ /^ [^ ]/
45
52
  line.strip!
46
53
  current = Dependency.new(line)
47
54
  self[current.name] = current
@@ -20,6 +20,6 @@
20
20
  #
21
21
  module Maven
22
22
  module Tools
23
- VERSION = '1.0.11'.freeze
23
+ VERSION = '1.0.12'.freeze
24
24
  end
25
25
  end
@@ -24,9 +24,10 @@ module Maven
24
24
  VERSIONS = {
25
25
  :jar_plugin => "2.4",
26
26
  :clean_plugin => "2.4",
27
- :jruby_plugins => "1.0.9",
28
- :bundler_version => "1.9.3",
29
- :jruby_version => "1.7.19",
27
+ :jruby_plugins => "1.1.1",
28
+ :jruby9_plugins => "0.2.1",
29
+ :bundler_version => "1.10.6",
30
+ :jruby_version => "1.7.22",
30
31
  :tesla_version => "0.1.1",
31
32
  :polyglot_version => "0.1.18"
32
33
  }.freeze
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
23
23
  s.test_files += Dir['spec/**/*.java']
24
24
  s.test_files += Dir['spec/**/*.xml']
25
25
  s.test_files += Dir['spec/**/*file']
26
- s.test_files += Dir['spec/**/Gemfile.lock']
26
+ s.test_files += Dir['spec/**/*.lock']
27
27
  s.test_files += Dir['spec/**/.keep']
28
28
  s.test_files += Dir['spec/**/*gemspec']
29
29
  s.test_files += Dir['spec/**/*gem']
@@ -5,7 +5,7 @@
5
5
  <version>0.0.0</version>
6
6
  <name>gemspec_spec</name>
7
7
  <properties>
8
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
8
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
9
9
  </properties>
10
10
  <dependencies>
11
11
  <dependency>
@@ -5,7 +5,7 @@
5
5
  <version>0.0.0</version>
6
6
  <name>gemspec_spec</name>
7
7
  <properties>
8
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
8
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
9
9
  </properties>
10
10
  <dependencies>
11
11
  <dependency>
@@ -5,7 +5,7 @@
5
5
  <version>0.0.0</version>
6
6
  <name>BASEDIR</name>
7
7
  <properties>
8
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
8
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
9
9
  </properties>
10
10
  <dependencies>
11
11
  <dependency>
@@ -0,0 +1,52 @@
1
+ org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.0.0.M2a
2
+ com.google.guava:guava:jar:10.0.1
3
+ commons-logging:commons-logging:jar:1.1.1
4
+ org.eclipse.aether:aether-connector-wagon:jar:0.9.0.M2
5
+ org.eclipse.aether:aether-impl:jar:0.9.0.M2
6
+ com.ning:async-http-client:jar:1.7.6
7
+ org.apache.maven.wagon:wagon-http-shared4:jar:2.4
8
+ org.sonatype.plexus:plexus-cipher:jar:1.4
9
+ org.sonatype.sisu:sisu-guice:jar:no_aop:3.1.0
10
+ org.apache.maven:maven-model:jar:3.1.0
11
+ org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
12
+ org.codehaus.plexus:plexus-classworlds:jar:2.4
13
+ org.apache.maven:maven-aether-provider:jar:3.1.0
14
+ org.apache.maven.wagon:wagon-provider-api:jar:1.0
15
+ io.netty:netty:jar:3.4.4.Final
16
+ aopalliance:aopalliance:jar:1.0
17
+ org.eclipse.aether:aether-api:jar:0.9.0.M2
18
+ org.jsoup:jsoup:jar:1.7.1
19
+ org.codehaus.plexus:plexus-interpolation:jar:1.16
20
+ javax.enterprise:cdi-api:jar:1.0
21
+ org.slf4j:slf4j-api:jar:1.6.6
22
+ asm:asm:jar:3.3.1
23
+ com.google.code.findbugs:jsr305:jar:1.3.9
24
+ org.apache.maven:maven-repository-metadata:jar:3.1.0
25
+ org.bouncycastle:bcpkix-jdk15on:jar:1.49
26
+ org.apache.httpcomponents:httpcore:jar:4.2.3
27
+ javax.annotation:jsr250-api:jar:1.0
28
+ org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.0.0.M2a
29
+ org.apache.maven:maven-settings:jar:3.1.0
30
+ org.apache.maven.wagon:wagon-file:jar:2.4
31
+ org.slf4j:slf4j-simple:jar:1.6.6
32
+ org.bouncycastle:bcprov-jdk15on:jar:1.49
33
+ org.eclipse.aether:aether-util:jar:0.9.0.M2
34
+ commons-io:commons-io:jar:2.0.1
35
+ org.apache.httpcomponents:httpclient:jar:4.2.3
36
+ org.eclipse.aether:aether-connector-file:jar:0.9.0.M2
37
+ org.eclipse.aether:aether-spi:jar:0.9.0.M2
38
+ org.apache.maven:maven-settings-builder:jar:3.1.0
39
+ javax.inject:javax.inject:jar:1
40
+ org.apache.maven:maven-model-builder:jar:3.1.0
41
+ org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
42
+ org.apache.maven.wagon:wagon-http:jar:2.4
43
+ org.codehaus.plexus:plexus-utils:jar:3.0.10
44
+ org.eclipse.aether:aether-connector-asynchttpclient:jar:0.9.0.M2
45
+ commons-codec:commons-codec:jar:1.6
46
+ com.beust:jcommander:jar:1.27
47
+ org.hamcrest:hamcrest-core:jar:1.1
48
+ junit:junit:jar:4.10
49
+ org.mockito:mockito-core:jar:1.9.5
50
+ org.testng:testng:jar:6.8
51
+ org.beanshell:bsh:jar:2.0b4
52
+ org.objenesis:objenesis:jar:1.0
@@ -0,0 +1,75 @@
1
+ ---
2
+ :jruby:
3
+ - joda-time:joda-time:jar:2.3
4
+ - com.martiansoftware:nailgun-server:jar:0.9.1
5
+ - com.github.jnr:jnr-netdb:jar:1.1.2
6
+ - com.headius:invokebinder:jar:1.2
7
+ - org.jruby.joni:joni:jar:2.1.1
8
+ - com.github.jnr:jnr-posix:jar:3.0.1
9
+ - org.jruby.extras:bytelist:jar:1.0.11
10
+ - com.github.jnr:jnr-x86asm:jar:1.0.2
11
+ - org.yaml:snakeyaml:jar:1.13
12
+ - com.github.jnr:jnr-constants:jar:0.8.5
13
+ - com.github.jnr:jffi:jar:native:1.2.7
14
+ - com.jcraft:jzlib:jar:1.1.2
15
+ - com.github.jnr:jnr-enxio:jar:0.4
16
+ - org.jruby:yecht:jar:1.0
17
+ - org.jruby:jruby-stdlib:jar:1.7.11
18
+ - org.jruby.jcodings:jcodings:jar:1.0.10
19
+ - com.github.jnr:jffi:jar:1.2.7
20
+ - org.jruby:jruby-core:jar:noasm:1.7.11
21
+ - com.github.jnr:jnr-unixsocket:jar:0.3
22
+ :runtime:
23
+ - org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.0.0.M2a
24
+ - com.google.guava:guava:jar:10.0.1
25
+ - commons-logging:commons-logging:jar:1.1.1
26
+ - org.eclipse.aether:aether-connector-wagon:jar:0.9.0.M2
27
+ - org.eclipse.aether:aether-impl:jar:0.9.0.M2
28
+ - com.ning:async-http-client:jar:1.7.6
29
+ - org.apache.maven.wagon:wagon-http-shared4:jar:2.4
30
+ - org.sonatype.plexus:plexus-cipher:jar:1.4
31
+ - org.sonatype.sisu:sisu-guice:jar:no_aop:3.1.0
32
+ - org.apache.maven:maven-model:jar:3.1.0
33
+ - org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
34
+ - org.codehaus.plexus:plexus-classworlds:jar:2.4
35
+ - org.apache.maven:maven-aether-provider:jar:3.1.0
36
+ - org.apache.maven.wagon:wagon-provider-api:jar:1.0
37
+ - io.netty:netty:jar:3.4.4.Final
38
+ - aopalliance:aopalliance:jar:1.0
39
+ - org.eclipse.aether:aether-api:jar:0.9.0.M2
40
+ - org.jsoup:jsoup:jar:1.7.1
41
+ - org.codehaus.plexus:plexus-interpolation:jar:1.16
42
+ - javax.enterprise:cdi-api:jar:1.0
43
+ - org.slf4j:slf4j-api:jar:1.6.6
44
+ - asm:asm:jar:3.3.1
45
+ - com.google.code.findbugs:jsr305:jar:1.3.9
46
+ - org.apache.maven:maven-repository-metadata:jar:3.1.0
47
+ - org.bouncycastle:bcpkix-jdk15on:jar:1.49
48
+ - org.apache.httpcomponents:httpcore:jar:4.2.3
49
+ - javax.annotation:jsr250-api:jar:1.0
50
+ - org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.0.0.M2a
51
+ - org.apache.maven:maven-settings:jar:3.1.0
52
+ - org.apache.maven.wagon:wagon-file:jar:2.4
53
+ - org.slf4j:slf4j-simple:jar:1.6.6
54
+ - org.bouncycastle:bcprov-jdk15on:jar:1.49
55
+ - org.eclipse.aether:aether-util:jar:0.9.0.M2
56
+ - commons-io:commons-io:jar:2.0.1
57
+ - org.apache.httpcomponents:httpclient:jar:4.2.3
58
+ - org.eclipse.aether:aether-connector-file:jar:0.9.0.M2
59
+ - org.eclipse.aether:aether-spi:jar:0.9.0.M2
60
+ - org.apache.maven:maven-settings-builder:jar:3.1.0
61
+ - javax.inject:javax.inject:jar:1
62
+ - org.apache.maven:maven-model-builder:jar:3.1.0
63
+ - org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
64
+ - org.apache.maven.wagon:wagon-http:jar:2.4
65
+ - org.codehaus.plexus:plexus-utils:jar:3.0.10
66
+ - org.eclipse.aether:aether-connector-asynchttpclient:jar:0.9.0.M2
67
+ - commons-codec:commons-codec:jar:1.6
68
+ :test:
69
+ - com.beust:jcommander:jar:1.27
70
+ - org.hamcrest:hamcrest-core:jar:1.1
71
+ - junit:junit:jar:4.10
72
+ - org.mockito:mockito-core:jar:1.9.5
73
+ - org.testng:testng:jar:6.8
74
+ - org.beanshell:bsh:jar:2.0b4
75
+ - org.objenesis:objenesis:jar:1.0
@@ -6,7 +6,7 @@
6
6
  <name>profile_gemspec_spec</name>
7
7
  <properties>
8
8
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
9
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
9
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
10
10
  </properties>
11
11
  <dependencies>
12
12
  <dependency>
@@ -6,7 +6,7 @@
6
6
  <name>profile_gemspec_spec</name>
7
7
  <properties>
8
8
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
9
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
9
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
10
10
  </properties>
11
11
  <dependencies>
12
12
  <dependency>