File tree 3 files changed +15
-15
lines changed
3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 1
1
# Deployer settings
2
- artifactory. publish.publications=${publications}
3
- artifactory. publish.contextUrl=${contextUrl}
4
- artifactory. publish.repoKey=${localRepo}
5
- artifactory. publish.username=${username}
6
- artifactory. publish.password=${password}
7
- artifactory. publish.unstable=false
8
- artifactory. publish.buildInfo=true
9
- artifactory. publish.maven=true
10
- artifactory. publish.ivy=true
2
+ publish.publications=${publications}
3
+ publish.contextUrl=${contextUrl}
4
+ publish.repoKey=${localRepo}
5
+ publish.username=${username}
6
+ publish.password=${password}
7
+ publish.unstable=false
8
+ publish.buildInfo=true
9
+ publish.maven=true
10
+ publish.ivy=true
Original file line number Diff line number Diff line change 1
1
# Resolver settings
2
- artifactory. resolve.contextUrl=${contextUrl}
3
- artifactory. resolve.repoKey=${virtualRepo}
4
- artifactory. resolve.username=${username}
5
- artifactory. resolve.password=${password}
2
+ resolve.contextUrl=${contextUrl}
3
+ resolve.repoKey=${virtualRepo}
4
+ resolve.username=${username}
5
+ resolve.password=${password}
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public void getDeploymentUrl() throws UnsupportedEncodingException {
37
37
props .put (ClientProperties .PROP_DEPLOY_PARAM_PROP_PREFIX + "buildName" , "moo" );
38
38
props .put (ClientProperties .PROP_DEPLOY_PARAM_PROP_PREFIX + "buildNumber" , "1" );
39
39
String deploymentUrl = DeploymentUrlUtils .getDeploymentUrl (artifactoryUrl , props );
40
- Assert .assertEquals (deploymentUrl , artifactoryUrl + ";buildName=moo; buildNumber=1" );
40
+ Assert .assertEquals (deploymentUrl , artifactoryUrl + ";buildNumber=1;buildName=moo " );
41
41
}
42
42
43
43
public void getDeploymentUrlWithEncodingNeeded () throws UnsupportedEncodingException {
@@ -46,7 +46,7 @@ public void getDeploymentUrlWithEncodingNeeded() throws UnsupportedEncodingExcep
46
46
props .put (ClientProperties .PROP_DEPLOY_PARAM_PROP_PREFIX + "build Name" , "moo" );
47
47
props .put (ClientProperties .PROP_DEPLOY_PARAM_PROP_PREFIX + "build Number" , "1" );
48
48
String deploymentUrl = DeploymentUrlUtils .getDeploymentUrl (artifactoryUrl , props );
49
- Assert .assertEquals (deploymentUrl , artifactoryUrl + ";build+Number=1 ;build+Name=moo " );
49
+ Assert .assertEquals (deploymentUrl , artifactoryUrl + ";build+Name=moo ;build+Number=1 " );
50
50
}
51
51
52
52
You can’t perform that action at this time.
0 commit comments