naether 0.6.0 → 0.6.1

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.0
1
+ 0.6.1
@@ -102,14 +102,13 @@ class Naether
102
102
 
103
103
  def check_local_repo_for_deps(local_repo = nil)
104
104
 
105
- local_repo = local_repo || ENV['M2_HOME'] || '~/.m2/repository'
105
+ local_repo = local_repo || ENV['M2_REPO'] || File.expand_path('~/.m2/repository')
106
106
  local_repo = File.expand_path(local_repo)
107
107
 
108
108
  puts "Checking #{local_repo} for jars to bootstrap Naether"
109
109
 
110
110
  deps = {:exists => [], :missing => [] }
111
111
 
112
- # /home/zinger/.m2/repository/com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar
113
112
  dependencies.each do |dep|
114
113
  notation = dep.split(":")
115
114
  group = notation[0].gsub("\.", File::SEPARATOR)
data/pom.xml CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  <groupId>com.slackworks</groupId>
6
6
  <artifactId>naether</artifactId>
7
- <version>0.6.0</version>
7
+ <version>0.6.1</version>
8
8
  <packaging>jar</packaging>
9
9
  <name>naether</name>
10
10
  <url>https://github.com/mguymon/naether</url>
@@ -161,6 +161,43 @@
161
161
  </execution>
162
162
  </executions>
163
163
  </plugin>
164
+ <plugin>
165
+ <groupId>org.apache.maven.plugins</groupId>
166
+ <artifactId>maven-source-plugin</artifactId>
167
+ <executions>
168
+ <execution>
169
+ <id>attach-sources</id>
170
+ <goals>
171
+ <goal>jar</goal>
172
+ </goals>
173
+ </execution>
174
+ </executions>
175
+ </plugin>
176
+ <plugin>
177
+ <groupId>org.apache.maven.plugins</groupId>
178
+ <artifactId>maven-javadoc-plugin</artifactId>
179
+ <executions>
180
+ <execution>
181
+ <id>attach-javadocs</id>
182
+ <goals>
183
+ <goal>jar</goal>
184
+ </goals>
185
+ </execution>
186
+ </executions>
187
+ </plugin>
188
+ <plugin>
189
+ <groupId>org.apache.maven.plugins</groupId>
190
+ <artifactId>maven-gpg-plugin</artifactId>
191
+ <executions>
192
+ <execution>
193
+ <id>sign-artifacts</id>
194
+ <phase>verify</phase>
195
+ <goals>
196
+ <goal>sign</goal>
197
+ </goals>
198
+ </execution>
199
+ </executions>
200
+ </plugin>
164
201
  </plugins>
165
202
  </build>
166
203
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: naether
3
3
  version: !ruby/object:Gem::Version
4
- hash: 7
4
+ hash: 5
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 0
10
- version: 0.6.0
9
+ - 1
10
+ version: 0.6.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Michael Guymon
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-04-16 00:00:00 Z
18
+ date: 2012-04-17 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  prerelease: false
@@ -98,7 +98,7 @@ files:
98
98
  - lib/naether.rb
99
99
  - lib/naether/bootstrap.rb
100
100
  - lib/naether/java.rb
101
- - naether-0.6.0.jar
101
+ - naether-0.6.1.jar
102
102
  - pom.xml
103
103
  homepage: http://github.com/mguymon/naether
104
104
  licenses: