Skip to content

Commit df99052

Browse files
author
Baruch Sadogursky
committed
Merge pull request #29 from jbaruch/master
ning-services tests fixed
2 parents e9b4fe3 + c1aefec commit df99052

File tree

7 files changed

+206
-212
lines changed

7 files changed

+206
-212
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ artifactory-client-java
33

44
Artifactory REST Client Java API bindings
55

6-
76
![Codeship status](https://www.codeship.io/projects/c516fe40-d115-0130-7f00-3663a95d3c82/status)

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import static java.lang.System.getenv
2+
13
buildscript {
24
repositories {
35
jcenter()
@@ -12,7 +14,7 @@ allprojects {
1214
apply plugin: 'idea'
1315
apply plugin: 'maven'
1416
apply plugin: 'artifactory'
15-
final env = System.getenv()
17+
final env = getenv()
1618

1719
def artifactoryUrl = hasProperty('artifactoryUrl')?artifactoryUrl:env['ARTIFACTORY_URL']
1820
if (artifactoryUrl) {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
currentVersion=0.9-SNAPSHOT
1+
currentVersion=0.10-SNAPSHOT
22
artifactoryUrl=https://oss.jfrog.org
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Nov 06 22:46:27 IST 2013
1+
#Mon Dec 02 11:40:43 IST 2013
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-bin.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-all.zip

ning-services/src/main/groovy/org/jfrog/artifactory/client/ning/NingRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public interface NingRequest {
1919

2020
/**
2121
*
22-
* @param BoundRequestBuilder
22+
* @param boundRequestBuilder
2323
* is a builder that has been created already to allow the implmentation class to build custom requests.
2424
* @return the {@link BoundRequestBuilder} to be added to the Http Client's request.
2525
*/

0 commit comments

Comments
 (0)