mini_aether 0.0.3-java → 0.0.5-java
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +2 -17
- data/lib/mini_aether/bootstrap.rb +1 -1
- metadata +13 -22
data/README.md
CHANGED
@@ -14,7 +14,8 @@ tool.
|
|
14
14
|
|
15
15
|
I feel that JRuby/maven/rubygems integration is lacking in many areas.
|
16
16
|
There are various attempts to improve this. See
|
17
|
-
[
|
17
|
+
[JBundler](https://github.com/mkristian/jbundler) and
|
18
|
+
[LockJar](https://github.com/mguymon/lock_jar) for example. So I'm
|
18
19
|
not sure what role MiniAether will play, if any.
|
19
20
|
|
20
21
|
require 'mini_aether'
|
@@ -23,16 +24,11 @@ not sure what role MiniAether will play, if any.
|
|
23
24
|
group 'org.sonatype.aether' do
|
24
25
|
version '1.13.1' do
|
25
26
|
jar 'aether-api'
|
26
|
-
jar 'aether-connector-asynchttpclient'
|
27
|
-
jar 'aether-connector-file'
|
28
27
|
jar 'aether-impl'
|
29
|
-
jar 'aether-spi'
|
30
|
-
jar 'aether-util'
|
31
28
|
end
|
32
29
|
end
|
33
30
|
|
34
31
|
jar 'com.ning:async-http-client:1.6.5'
|
35
|
-
jar 'org.jboss.netty:netty:3.2.5.Final'
|
36
32
|
|
37
33
|
# alternate syntax
|
38
34
|
dep(:group_id => 'org.slf4j',
|
@@ -40,18 +36,7 @@ not sure what role MiniAether will play, if any.
|
|
40
36
|
:version => '1.6.2',
|
41
37
|
:extension => 'jar') # 'jar' is the default if none is given
|
42
38
|
|
43
|
-
group 'org.apache.maven' do
|
44
|
-
version '3.0.4' do
|
45
|
-
jar 'maven-aether-provider'
|
46
|
-
jar 'maven-model'
|
47
|
-
jar 'maven-model-builder'
|
48
|
-
jar 'maven-repository-metadata'
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
39
|
group 'org.codehaus.plexus' do
|
53
|
-
jar 'plexus-interpolation:1.14'
|
54
|
-
jar 'plexus-component-annotations:1.5.5'
|
55
40
|
jar 'plexus-utils:2.0.6'
|
56
41
|
end
|
57
42
|
end
|
@@ -35,7 +35,7 @@ module MiniAether
|
|
35
35
|
jar 'ch.qos.logback:logback-core:1.0.6'
|
36
36
|
jar 'ch.qos.logback:logback-classic:1.0.6'
|
37
37
|
# add dir to classpath since it contains logback.xml
|
38
|
-
$CLASSPATH << File.dirname(__FILE__)
|
38
|
+
$CLASSPATH << File.expand_path(File.dirname(__FILE__))
|
39
39
|
end
|
40
40
|
|
41
41
|
group 'org.apache.maven' do
|
metadata
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
name: mini_aether
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.5
|
6
6
|
platform: java
|
7
7
|
authors:
|
8
8
|
- Patrick Mahoney
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-12-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: minitest
|
@@ -73,24 +73,15 @@ extra_rdoc_files:
|
|
73
73
|
- README.md
|
74
74
|
- COPYING
|
75
75
|
files:
|
76
|
-
-
|
77
|
-
|
78
|
-
-
|
79
|
-
|
80
|
-
-
|
81
|
-
|
82
|
-
-
|
83
|
-
|
84
|
-
-
|
85
|
-
bGliL21pbmlfYWV0aGVyL3htbF9wYXJzZXIucmI=
|
86
|
-
- !binary |-
|
87
|
-
dGVzdC90ZXN0X2hlbHBlci5yYg==
|
88
|
-
- !binary |-
|
89
|
-
dGVzdC9taW5pX2FldGhlcl90ZXN0LnJi
|
90
|
-
- !binary |-
|
91
|
-
dGVzdC9taW5pX2FldGhlci9zcGVjX3Rlc3QucmI=
|
92
|
-
- !binary |-
|
93
|
-
dGVzdC9taW5pX2FldGhlci9ib290c3RyYXBfdGVzdC5yYg==
|
76
|
+
- lib/mini_aether.rb
|
77
|
+
- lib/mini_aether/resolver.rb
|
78
|
+
- lib/mini_aether/bootstrap.rb
|
79
|
+
- lib/mini_aether/xml_parser.rb
|
80
|
+
- lib/mini_aether/spec.rb
|
81
|
+
- test/mini_aether_test.rb
|
82
|
+
- test/test_helper.rb
|
83
|
+
- test/mini_aether/bootstrap_test.rb
|
84
|
+
- test/mini_aether/spec_test.rb
|
94
85
|
- README.md
|
95
86
|
- COPYING
|
96
87
|
homepage: https://github.com/pmahoney/mini_aether
|
@@ -103,11 +94,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
103
94
|
requirements:
|
104
95
|
- - ! '>='
|
105
96
|
- !ruby/object:Gem::Version
|
97
|
+
version: !binary |-
|
98
|
+
MA==
|
106
99
|
segments:
|
107
100
|
- 0
|
108
101
|
hash: 2
|
109
|
-
version: !binary |-
|
110
|
-
MA==
|
111
102
|
none: false
|
112
103
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
113
104
|
requirements:
|