naether 0.8.6-java → 0.9.0-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/pom.xml CHANGED
@@ -1,60 +1,61 @@
1
1
  <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
2
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
3
  <modelVersion>4.0.0</modelVersion>
4
-
5
- <groupId>com.slackworks</groupId>
4
+ <groupId>com.tobedevoured.naether</groupId>
6
5
  <artifactId>naether</artifactId>
7
- <version>0.8.6</version>
6
+ <name>Naether</name>
8
7
  <packaging>jar</packaging>
9
- <name>naether</name>
8
+ <version>0.9.0</version>
10
9
  <url>https://github.com/mguymon/naether</url>
11
10
  <description>
12
11
  A Java Dependency Resolver using Maven’s Aether.
13
12
  </description>
14
13
  <licenses>
15
- <license>
16
- <name>The Apache Software License, Version 2.0</name>
17
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
18
- <distribution>repo</distribution>
19
- </license>
20
- </licenses>
21
- <scm>
22
- <url>scm:git:git@github.com/mguymon/naether.git</url>
23
- <developerConnection>scm:git:git@github.com/mguymon/naether.git</developerConnection>
24
- <connection>git@github.com/mguymon/naether.git</connection>
25
- </scm>
26
- <developers>
27
- <developer>
28
- <id>mguymon</id>
29
- <name>Michael Guymon</name>
30
- <email>michael@tobedevoured.com</email>
31
- </developer>
32
- </developers>
33
- <distributionManagement>
34
- <repository>
35
- <id>nexus-releases</id>
36
- <name>Nexus Release Repository</name>
37
- <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
38
- </repository>
39
- </distributionManagement>
14
+ <license>
15
+ <name>The Apache Software License, Version 2.0</name>
16
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
17
+ <distribution>repo</distribution>
18
+ </license>
19
+ </licenses>
20
+
21
+ <scm>
22
+ <url>scm:git:http://github.com/mguymon/naether.git</url>
23
+ <developerConnection>scm:git:http://github.com/mguymon/naether.git</developerConnection>
24
+ <connection>scm:git:http://github.com/mguymon/naether.git</connection>
25
+ </scm>
26
+
27
+ <developers>
28
+ <developer>
29
+ <id>mguymon</id>
30
+ <name>Michael Guymon</name>
31
+ <email>michael@tobedevoured.com</email>
32
+ </developer>
33
+ </developers>
34
+
35
+ <distributionManagement>
36
+ <repository>
37
+ <id>nexus-releases</id>
38
+ <name>Nexus Release Repository</name>
39
+ <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
40
+ </repository>
41
+ </distributionManagement>
42
+
40
43
  <properties>
44
+ <github.global.server>github</github.global.server>
41
45
  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42
- <aetherVersion>1.13</aetherVersion>
46
+ <aetherVersion>1.13.1</aetherVersion>
43
47
  <mavenVersion>3.0.3</mavenVersion>
44
48
  <wagonVersion>1.0</wagonVersion>
45
- <org.slf4j.version>1.6.2</org.slf4j.version>
49
+ <org.slf4j.version>1.6.6</org.slf4j.version>
46
50
  </properties>
51
+
47
52
  <dependencies>
48
- <dependency>
49
- <groupId>ch.qos.logback</groupId>
50
- <artifactId>logback-classic</artifactId>
51
- <version>0.9.29</version>
52
- </dependency>
53
- <dependency>
54
- <groupId>org.slf4j</groupId>
55
- <artifactId>slf4j-api</artifactId>
56
- <version>${org.slf4j.version}</version>
57
- </dependency>
53
+ <!-- Logging -->
54
+ <dependency>
55
+ <groupId>ch.qos.logback</groupId>
56
+ <artifactId>logback-classic</artifactId>
57
+ <version>1.0.6</version>
58
+ </dependency>
58
59
  <dependency>
59
60
  <groupId>org.slf4j</groupId>
60
61
  <artifactId>jcl-over-slf4j</artifactId>
@@ -65,21 +66,8 @@
65
66
  <artifactId>log4j-over-slf4j</artifactId>
66
67
  <version>${org.slf4j.version}</version>
67
68
  </dependency>
68
- <dependency>
69
- <groupId>org.codehaus.plexus</groupId>
70
- <artifactId>plexus-utils</artifactId>
71
- <version>3.0</version>
72
- </dependency>
73
- <dependency>
74
- <groupId>org.apache.maven</groupId>
75
- <artifactId>maven-model-v3</artifactId>
76
- <version>2.0</version>
77
- </dependency>
78
- <dependency>
79
- <groupId>org.codehaus.plexus</groupId>
80
- <artifactId>plexus-container-default</artifactId>
81
- <version>1.5.5</version>
82
- </dependency>
69
+
70
+ <!-- Aeth -->
83
71
  <dependency>
84
72
  <groupId>org.sonatype.aether</groupId>
85
73
  <artifactId>aether-api</artifactId>
@@ -104,11 +92,23 @@
104
92
  <groupId>org.sonatype.aether</groupId>
105
93
  <artifactId>aether-connector-asynchttpclient</artifactId>
106
94
  <version>${aetherVersion}</version>
95
+ <exclusions>
96
+ <exclusion>
97
+ <artifactId>netty</artifactId>
98
+ <groupId>org.jboss.netty</groupId>
99
+ </exclusion>
100
+ </exclusions>
107
101
  </dependency>
108
102
  <dependency>
109
103
  <groupId>org.sonatype.aether</groupId>
110
104
  <artifactId>aether-connector-wagon</artifactId>
111
105
  <version>${aetherVersion}</version>
106
+ <exclusions>
107
+ <exclusion>
108
+ <artifactId>sisu-inject-plexus</artifactId>
109
+ <groupId>org.sonatype.sisu</groupId>
110
+ </exclusion>
111
+ </exclusions>
112
112
  </dependency>
113
113
  <dependency>
114
114
  <groupId>org.apache.maven</groupId>
@@ -130,85 +130,106 @@
130
130
  <artifactId>wagon-file</artifactId>
131
131
  <version>${wagonVersion}</version>
132
132
  </dependency>
133
-
134
- <!-- Test Scope -->
135
- <dependency>
136
- <groupId>junit</groupId>
137
- <artifactId>junit</artifactId>
138
- <version>4.8.2</version>
139
- <scope>test</scope>
140
- </dependency>
133
+
134
+ <!-- Testing -->
135
+ <dependency>
136
+ <groupId>junit</groupId>
137
+ <artifactId>junit</artifactId>
138
+ <version>4.10</version>
139
+ <scope>test</scope>
140
+ </dependency>
141
141
  </dependencies>
142
-
142
+
143
143
  <build>
144
- <plugins>
145
- <plugin>
146
- <groupId>org.apache.maven.plugins</groupId>
147
- <artifactId>maven-dependency-plugin</artifactId>
148
- <executions>
149
- <execution>
150
- <id>copy-dependencies</id>
151
- <phase>package</phase>
152
- <goals>
153
- <goal>copy-dependencies</goal>
154
- </goals>
155
- <configuration>
156
- <outputDirectory>${project.build.directory}/lib</outputDirectory>
157
- <overWriteReleases>false</overWriteReleases>
158
- <overWriteSnapshots>false</overWriteSnapshots>
159
- <overWriteIfNewer>true</overWriteIfNewer>
160
- </configuration>
161
- </execution>
162
- </executions>
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>
201
- </plugins>
144
+ <plugins>
145
+ <plugin>
146
+ <groupId>org.codehaus.mojo</groupId>
147
+ <artifactId>sonar-maven-plugin</artifactId>
148
+ <version>2.0</version>
149
+ </plugin>
150
+ <plugin>
151
+ <groupId>com.github.github</groupId>
152
+ <artifactId>site-maven-plugin</artifactId>
153
+ <version>0.6</version>
154
+ <configuration>
155
+ <message>Creating site for ${project.version}</message>
156
+ </configuration>
157
+ <executions>
158
+ <execution>
159
+ <goals>
160
+ <goal>site</goal>
161
+ </goals>
162
+ <phase>site</phase>
163
+ </execution>
164
+ </executions>
165
+ </plugin>
166
+ <plugin>
167
+ <groupId>org.apache.maven.plugins</groupId>
168
+ <artifactId>maven-source-plugin</artifactId>
169
+ <executions>
170
+ <execution>
171
+ <id>attach-sources</id>
172
+ <goals>
173
+ <goal>jar</goal>
174
+ </goals>
175
+ </execution>
176
+ </executions>
177
+ </plugin>
178
+ <plugin>
179
+ <groupId>org.apache.maven.plugins</groupId>
180
+ <artifactId>maven-javadoc-plugin</artifactId>
181
+ <executions>
182
+ <execution>
183
+ <id>attach-javadocs</id>
184
+ <goals>
185
+ <goal>jar</goal>
186
+ </goals>
187
+ </execution>
188
+ </executions>
189
+ </plugin>
190
+ <plugin>
191
+ <groupId>org.apache.maven.plugins</groupId>
192
+ <artifactId>maven-gpg-plugin</artifactId>
193
+ <executions>
194
+ <execution>
195
+ <id>sign-artifacts</id>
196
+ <phase>verify</phase>
197
+ <goals>
198
+ <goal>sign</goal>
199
+ </goals>
200
+ </execution>
201
+ </executions>
202
+ </plugin>
203
+ </plugins>
202
204
  </build>
203
-
205
+
204
206
  <reporting>
205
- <plugins>
206
- <plugin>
207
- <groupId>org.apache.maven.plugins</groupId>
208
- <artifactId>maven-surefire-report-plugin</artifactId>
209
- <version>2.7.2</version>
210
- </plugin>
211
- </plugins>
212
- </reporting>
207
+ <plugins>
208
+ <plugin>
209
+ <groupId>org.apache.maven.plugins</groupId>
210
+ <artifactId>maven-project-info-reports-plugin</artifactId>
211
+ <version>2.4</version>
212
+ <configuration>
213
+ <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
214
+ <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
215
+ </configuration>
216
+ <reportSets>
217
+ <reportSet>
218
+ <reports>
219
+ <report>dependencies</report>
220
+ <report>scm</report>
221
+ </reports>
222
+ </reportSet>
223
+ </reportSets>
224
+ </plugin>
225
+ <plugin>
226
+ <groupId>org.apache.maven.plugins</groupId>
227
+ <artifactId>maven-javadoc-plugin</artifactId>
228
+ <version>2.8.1</version>
229
+ <configuration>
230
+ </configuration>
231
+ </plugin>
232
+ </plugins>
233
+ </reporting>
213
234
 
214
235
  </project>
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: naether
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.8.6
5
+ version: 0.9.0
6
6
  platform: java
7
7
  authors:
8
8
  - Michael Guymon
@@ -10,70 +10,109 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2012-08-28 00:00:00 Z
13
+ date: 2012-09-12 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
- name: rspec
16
+ name: rake
17
17
  version_requirements: &id001 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
- - - "="
20
+ - - ~>
21
21
  - !ruby/object:Gem::Version
22
- version: 2.9.0
22
+ version: 0.9.2
23
23
  requirement: *id001
24
24
  prerelease: false
25
25
  type: :development
26
26
  - !ruby/object:Gem::Dependency
27
- name: bundler
27
+ name: rspec
28
28
  version_requirements: &id002 !ruby/object:Gem::Requirement
29
29
  none: false
30
30
  requirements:
31
31
  - - ">"
32
32
  - !ruby/object:Gem::Version
33
- version: 1.0.0
33
+ version: 2.9.0
34
34
  requirement: *id002
35
35
  prerelease: false
36
36
  type: :development
37
37
  - !ruby/object:Gem::Dependency
38
- name: jeweler
38
+ name: bundler
39
39
  version_requirements: &id003 !ruby/object:Gem::Requirement
40
40
  none: false
41
41
  requirements:
42
42
  - - ">"
43
43
  - !ruby/object:Gem::Version
44
- version: 1.5.2
44
+ version: 1.0.0
45
45
  requirement: *id003
46
46
  prerelease: false
47
47
  type: :development
48
48
  - !ruby/object:Gem::Dependency
49
- name: jruby-openssl
49
+ name: jeweler
50
50
  version_requirements: &id004 !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ">"
54
+ - !ruby/object:Gem::Version
55
+ version: 1.5.2
56
+ requirement: *id004
57
+ prerelease: false
58
+ type: :development
59
+ - !ruby/object:Gem::Dependency
60
+ name: yard
61
+ version_requirements: &id005 !ruby/object:Gem::Requirement
51
62
  none: false
52
63
  requirements:
53
64
  - - ">="
54
65
  - !ruby/object:Gem::Version
55
66
  version: "0"
56
- requirement: *id004
67
+ requirement: *id005
68
+ prerelease: false
69
+ type: :development
70
+ - !ruby/object:Gem::Dependency
71
+ name: kramdown
72
+ version_requirements: &id006 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: "0"
78
+ requirement: *id006
79
+ prerelease: false
80
+ type: :development
81
+ - !ruby/object:Gem::Dependency
82
+ name: jruby-openssl
83
+ version_requirements: &id007 !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: "0"
89
+ requirement: *id007
57
90
  prerelease: false
58
91
  type: :development
59
92
  description: Java dependency resolver using Maven's Aether
60
- email: michael.guymon@gmail.com
93
+ email: michael@tobedevoured.com
61
94
  executables: []
62
95
 
63
- extensions: []
64
-
96
+ extensions:
97
+ - Rakefile
65
98
  extra_rdoc_files:
66
99
  - LICENSE
67
- - README.rdoc
100
+ - README.md
68
101
  files:
69
102
  - LICENSE
70
- - README.rdoc
103
+ - README.md
104
+ - Rakefile
71
105
  - VERSION
72
106
  - jar_dependencies.yml
73
107
  - lib/naether.rb
74
108
  - lib/naether/bootstrap.rb
109
+ - lib/naether/configuration.rb
75
110
  - lib/naether/java.rb
76
- - naether-0.8.6.jar
111
+ - lib/naether/java/jruby.rb
112
+ - lib/naether/java/ruby.rb
113
+ - lib/naether/maven.rb
114
+ - naether-0.9.0.jar
115
+ - naether.gemspec
77
116
  - pom.xml
78
117
  homepage: http://github.com/mguymon/naether
79
118
  licenses: