naether 0.9.0-java → 0.9.1-java

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.
@@ -0,0 +1,112 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
+ <title>
7
+ Top Level Namespace
8
+
9
+ &mdash; Documentation by YARD 0.8.2.1
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
14
+
15
+ <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
16
+
17
+ <script type="text/javascript" charset="utf-8">
18
+ hasFrames = window.top.frames.main ? true : false;
19
+ relpath = '';
20
+ framesUrl = "frames.html#!" + escape(window.location.href);
21
+ </script>
22
+
23
+
24
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
25
+
26
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
27
+
28
+
29
+ </head>
30
+ <body>
31
+ <div id="header">
32
+ <div id="menu">
33
+
34
+ <a href="_index.html">Index</a> &raquo;
35
+
36
+
37
+ <span class="title">Top Level Namespace</span>
38
+
39
+
40
+ <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
41
+ </div>
42
+
43
+ <div id="search">
44
+
45
+ <a class="full_list_link" id="class_list_link"
46
+ href="class_list.html">
47
+ Class List
48
+ </a>
49
+
50
+ <a class="full_list_link" id="method_list_link"
51
+ href="method_list.html">
52
+ Method List
53
+ </a>
54
+
55
+ <a class="full_list_link" id="file_list_link"
56
+ href="file_list.html">
57
+ File List
58
+ </a>
59
+
60
+ </div>
61
+ <div class="clear"></div>
62
+ </div>
63
+
64
+ <iframe id="search_frame"></iframe>
65
+
66
+ <div id="content"><h1>Top Level Namespace
67
+
68
+
69
+
70
+ </h1>
71
+
72
+ <dl class="box">
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+ </dl>
82
+ <div class="clear"></div>
83
+
84
+ <h2>Defined Under Namespace</h2>
85
+ <p class="children">
86
+
87
+
88
+
89
+
90
+ <strong class="classes">Classes:</strong> <span class='object_link'><a href="Naether.html" title="Naether (class)">Naether</a></span>
91
+
92
+
93
+ </p>
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+ </div>
104
+
105
+ <div id="footer">
106
+ Generated on Mon Sep 17 21:48:44 2012 by
107
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
108
+ 0.8.2.1 (ruby-1.8.7).
109
+ </div>
110
+
111
+ </body>
112
+ </html>
data/lib/naether.rb CHANGED
@@ -356,7 +356,7 @@ class Naether
356
356
  # @param [String] notation
357
357
  # @param [String] file_path to artifact to deploy
358
358
  # @param [String] url to deploy to
359
- # @opts [Hash] opts
359
+ # @param [Hash] opts
360
360
  # @option opts [String] :pom_path path to pom.xml
361
361
  # @option opts [String] :username for optional auth
362
362
  # @option opts [String] :password for optional auth
@@ -22,7 +22,7 @@ class Naether
22
22
  :naether_jar => File.join( gem_dir, "naether-#{version}.jar"),
23
23
  :platform => ($platform || RUBY_PLATFORM[/java/] || 'ruby'),
24
24
  :version => version,
25
- :depenencies_yml => File.expand_path("#{File.dirname( __FILE__ )}/../../jar_dependencies.yml")
25
+ :dependencies_yml => File.expand_path("#{File.dirname( __FILE__ )}/../../jar_dependencies.yml")
26
26
  }
27
27
 
28
28
  update!(data)
data/lib/naether/maven.rb CHANGED
@@ -27,7 +27,7 @@ class Naether
27
27
 
28
28
  # Create an instance from a POM
29
29
  #
30
- # @params [String] pom_path
30
+ # @param [String] pom_path
31
31
  # @return [Naether::Maven]
32
32
  def create_from_pom( pom_path )
33
33
  maven = Maven.new( pom_path )
@@ -35,7 +35,7 @@ class Naether
35
35
 
36
36
  # Create an instance based on notation
37
37
  #
38
- # @params [String] notation
38
+ # @param [String] notation
39
39
  # @return [Naether::Maven]
40
40
  # @see https://github.com/mguymon/naether/wiki/Notations
41
41
  def create_from_notation( notation )
data/naether-0.9.1.jar ADDED
Binary file
data/naether.gemspec CHANGED
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "naether"
8
- s.version = "0.9.0"
8
+ s.version = "0.9.1"
9
9
  s.platform = "java"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.authors = ["Michael Guymon"]
13
- s.date = "2012-09-12"
13
+ s.date = "2012-09-18"
14
14
  s.description = "Java dependency resolver using Maven's Aether"
15
15
  s.email = "michael@tobedevoured.com"
16
16
  s.extensions = ["Rakefile"]
@@ -23,6 +23,27 @@ Gem::Specification.new do |s|
23
23
  "README.md",
24
24
  "Rakefile",
25
25
  "VERSION",
26
+ "doc/Naether.html",
27
+ "doc/Naether/Bootstrap.html",
28
+ "doc/Naether/Configurator.html",
29
+ "doc/Naether/Java.html",
30
+ "doc/Naether/Java/JRuby.html",
31
+ "doc/Naether/Java/Ruby.html",
32
+ "doc/Naether/Maven.html",
33
+ "doc/_index.html",
34
+ "doc/class_list.html",
35
+ "doc/css/common.css",
36
+ "doc/css/full_list.css",
37
+ "doc/css/style.css",
38
+ "doc/file.README.html",
39
+ "doc/file_list.html",
40
+ "doc/frames.html",
41
+ "doc/index.html",
42
+ "doc/js/app.js",
43
+ "doc/js/full_list.js",
44
+ "doc/js/jquery.js",
45
+ "doc/method_list.html",
46
+ "doc/top-level-namespace.html",
26
47
  "jar_dependencies.yml",
27
48
  "lib/naether.rb",
28
49
  "lib/naether/bootstrap.rb",
@@ -31,7 +52,7 @@ Gem::Specification.new do |s|
31
52
  "lib/naether/java/jruby.rb",
32
53
  "lib/naether/java/ruby.rb",
33
54
  "lib/naether/maven.rb",
34
- "naether-0.9.0.jar",
55
+ "naether-0.9.1.jar",
35
56
  "naether.gemspec",
36
57
  "pom.xml"
37
58
  ]
data/pom.xml CHANGED
@@ -5,7 +5,7 @@
5
5
  <artifactId>naether</artifactId>
6
6
  <name>Naether</name>
7
7
  <packaging>jar</packaging>
8
- <version>0.9.0</version>
8
+ <version>0.9.1</version>
9
9
  <url>https://github.com/mguymon/naether</url>
10
10
  <description>
11
11
  A Java Dependency Resolver using Maven’s Aether.
@@ -229,6 +229,11 @@
229
229
  <configuration>
230
230
  </configuration>
231
231
  </plugin>
232
+ <plugin>
233
+ <groupId>org.apache.maven.plugins</groupId>
234
+ <artifactId>maven-surefire-report-plugin</artifactId>
235
+ <version>2.12.3</version>
236
+ </plugin>
232
237
  </plugins>
233
238
  </reporting>
234
239
 
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: naether
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.9.0
5
+ version: 0.9.1
6
6
  platform: java
7
7
  authors:
8
8
  - Michael Guymon
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2012-09-12 00:00:00 Z
13
+ date: 2012-09-18 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake
@@ -103,6 +103,27 @@ files:
103
103
  - README.md
104
104
  - Rakefile
105
105
  - VERSION
106
+ - doc/Naether.html
107
+ - doc/Naether/Bootstrap.html
108
+ - doc/Naether/Configurator.html
109
+ - doc/Naether/Java.html
110
+ - doc/Naether/Java/JRuby.html
111
+ - doc/Naether/Java/Ruby.html
112
+ - doc/Naether/Maven.html
113
+ - doc/_index.html
114
+ - doc/class_list.html
115
+ - doc/css/common.css
116
+ - doc/css/full_list.css
117
+ - doc/css/style.css
118
+ - doc/file.README.html
119
+ - doc/file_list.html
120
+ - doc/frames.html
121
+ - doc/index.html
122
+ - doc/js/app.js
123
+ - doc/js/full_list.js
124
+ - doc/js/jquery.js
125
+ - doc/method_list.html
126
+ - doc/top-level-namespace.html
106
127
  - jar_dependencies.yml
107
128
  - lib/naether.rb
108
129
  - lib/naether/bootstrap.rb
@@ -111,7 +132,7 @@ files:
111
132
  - lib/naether/java/jruby.rb
112
133
  - lib/naether/java/ruby.rb
113
134
  - lib/naether/maven.rb
114
- - naether-0.9.0.jar
135
+ - naether-0.9.1.jar
115
136
  - naether.gemspec
116
137
  - pom.xml
117
138
  homepage: http://github.com/mguymon/naether
data/naether-0.9.0.jar DELETED
Binary file