grunt-jenkins-build-number
Advanced tools
Comparing version 0.0.3 to 0.0.4
{ | ||
"name": "grunt-jenkins-build-number", | ||
"description": "Retrieves the latest build number/state from Jenkins.", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"homepage": "https://github.com/Ideame/grunt-jenkins-build-number", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -46,2 +46,3 @@ grunt-jenkins-build-number | ||
hostname: 'jenkins.mycompany.com', | ||
port: 8080, //defaults to 80 if none chosen | ||
state: 'lastSuccessfulBuild', | ||
@@ -48,0 +49,0 @@ username: process.env.JENKINS_USERNAME, |
@@ -21,3 +21,3 @@ /* | ||
host: options.hostname, | ||
port: 80, | ||
port: options.port || 80, | ||
path: util.format('%s/job/%s/%s/buildNumber', options.path, options.projectName, options.state) | ||
@@ -24,0 +24,0 @@ }; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5375
61