naether 0.6.0-java → 0.6.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.
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
@@ -2,7 +2,7 @@
2
2
  name: naether
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.6.0
5
+ version: 0.6.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-04-16 00:00:00 -04:00
13
+ date: 2012-04-17 00:00:00 -04:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -74,7 +74,7 @@ files:
74
74
  - lib/naether.rb
75
75
  - lib/naether/bootstrap.rb
76
76
  - lib/naether/java.rb
77
- - naether-0.6.0.jar
77
+ - naether-0.6.1.jar
78
78
  - pom.xml
79
79
  has_rdoc: true
80
80
  homepage: http://github.com/mguymon/naether