jruby-jars 1.7.9 → 1.7.10
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e54471f55e67433a67d682f48054c1c457d70fe
|
|
4
|
+
data.tar.gz: e0df43bd30457bac66d5349867582276b9dd1c76
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9ee4a4f0b53c34d7b7637112da560ce00a9e1c0c1261565b1999b30c83375b94d0474b1a8fe104c33d754b5c920fe358953e23f0490d6a43e888059e6905c57a
|
|
7
|
+
data.tar.gz: 049e4013dbdad00ee7213f7a8e7dadaac979843f307c2f76ae7c7c5386f82ec722208e73c2df0f0e0e0558bb0732ee0fbb55f2e84edbed15ef7b7c8350d357cc
|
data/Mavenfile
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
gemspec :include_jars => true
|
|
4
4
|
|
|
5
|
-
model.version = model.version.sub(/\.SNAPSHOT/, '-SNAPSHOT')
|
|
5
|
+
model.version = model.version.sub(/\.SNAPSHOT/, '-SNAPSHOT').sub( /-SNAPSHOT-SNAPSHOT/, '-SNAPSHOT' )
|
|
6
6
|
inherit "org.jruby:jruby-artifacts:#{model.version}"
|
|
7
7
|
|
|
8
8
|
name "JRuby Jars Gem"
|
|
@@ -20,9 +20,10 @@ plugin( :clean, '2.5' ) do
|
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
properties( 'tesla.dump.pom' => 'pom.xml',
|
|
23
|
-
'tesla.dump.readonly' => true
|
|
23
|
+
'tesla.dump.readonly' => true,
|
|
24
|
+
'jruby.home' => '${basedir}/../../' )
|
|
24
25
|
|
|
25
|
-
|
|
26
|
+
jruby_plugin :gem do
|
|
26
27
|
execute_goals :id => 'default-push', :skip => true
|
|
27
28
|
end
|
|
28
29
|
|
|
@@ -31,7 +32,18 @@ execute 'rename gem file', :package do |ctx|
|
|
|
31
32
|
require 'fileutils'
|
|
32
33
|
gem = File.join( ctx.project.build.directory,
|
|
33
34
|
ctx.project.build.final_name + ".gem" )
|
|
34
|
-
|
|
35
|
+
source = gem.sub( /-SNAPSHOT/, '.SNAPSHOT' )
|
|
36
|
+
FileUtils.mv( source, gem ) if gem.match( /-SNAPSHOT/ ) and File.exists?( source )
|
|
35
37
|
|
|
36
38
|
end
|
|
39
|
+
|
|
40
|
+
plugin( :invoker,
|
|
41
|
+
:projectsDirectory => 'src/it',
|
|
42
|
+
:cloneProjectsTo => '${project.build.directory}/it',
|
|
43
|
+
:postBuildHookScript => 'verify.bsh',
|
|
44
|
+
:streamLogs => true ) do
|
|
45
|
+
execute_goals( :install, :run )
|
|
46
|
+
# :settingsFile => '${basedir}/src/it/settings.xml',
|
|
47
|
+
# :localRepositoryPath => '${project.build.directory}/local-repo' )
|
|
48
|
+
end
|
|
37
49
|
# vim: syntax=Ruby
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jruby-jars
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Charles Oliver Nutter
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |-
|
|
14
14
|
This gem includes the core JRuby code and the JRuby 1.8/1.9 stdlib as jar files.
|
|
@@ -26,8 +26,8 @@ files:
|
|
|
26
26
|
- Rakefile
|
|
27
27
|
- lib/jruby-jars.rb
|
|
28
28
|
- lib/jruby-jars/version.rb
|
|
29
|
-
- lib/jruby-core-complete-1.7.
|
|
30
|
-
- lib/jruby-stdlib-complete-1.7.
|
|
29
|
+
- lib/jruby-core-complete-1.7.10.jar
|
|
30
|
+
- lib/jruby-stdlib-complete-1.7.10.jar
|
|
31
31
|
homepage: http://github.com/jruby/jruby/tree/master/gem/jruby-jars
|
|
32
32
|
licenses: []
|
|
33
33
|
metadata: {}
|