├── .gitignore ├── Jenkinsfile ├── LICENSE ├── README.md ├── assets ├── async_pipeline.groovy ├── basic_pipeline.groovy ├── color_pipeline.groovy ├── delete_tokens.py ├── local_jenkins_project_files │ ├── export_values.yml │ ├── fail_playbook.yml │ ├── long_job.yml │ ├── multi_cred.yml │ ├── simple.yml │ ├── skip_tags.yml │ └── sleep.yml ├── setup_tower_instance.txt └── tower_assets.json ├── docs └── images │ ├── configuration-0.7.0.png │ ├── project_revision_freestyle.png │ ├── project_sync_freestyle.png │ └── run_job_freestyle.png ├── pom.xml ├── src └── main │ ├── java │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── ansible_tower │ │ ├── AnsibleTower.java │ │ ├── AnsibleTowerGlobalConfig.java │ │ ├── AnsibleTowerProjectRevisionFreestyle.java │ │ ├── AnsibleTowerProjectRevisionStep.java │ │ ├── AnsibleTowerProjectSyncFreestyle.java │ │ ├── AnsibleTowerProjectSyncStep.java │ │ ├── AnsibleTowerRunner.java │ │ ├── AnsibleTowerStep.java │ │ ├── exceptions │ │ ├── AnsibleTowerDoesNotSupportAuthToken.java │ │ ├── AnsibleTowerException.java │ │ ├── AnsibleTowerItemDoesNotExist.java │ │ └── AnsibleTowerRefusesToGiveToken.java │ │ └── util │ │ ├── GetUserPageCredentials.java │ │ ├── TowerConnector.java │ │ ├── TowerInstallation.java │ │ ├── TowerJob.java │ │ ├── TowerLogger.java │ │ ├── TowerProject.java │ │ ├── TowerProjectSync.java │ │ ├── TowerVersion.java │ │ └── TrustingSSLSocketFactory.java │ ├── resources │ ├── index.jelly │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── ansible_tower │ │ ├── AnsibleTower │ │ └── config.jelly │ │ ├── AnsibleTowerGlobalConfig │ │ └── config.jelly │ │ ├── AnsibleTowerProjectRevisionFreestyle │ │ └── config.jelly │ │ ├── AnsibleTowerProjectRevisionStep │ │ └── config.jelly │ │ ├── AnsibleTowerProjectSyncFreestyle │ │ └── config.jelly │ │ ├── AnsibleTowerProjectSyncStep │ │ └── config.jelly │ │ └── AnsibleTowerStep │ │ └── config.jelly │ └── webapp │ ├── help-async.html │ ├── help-credential.html │ ├── help-displayName.html │ ├── help-enableDebugging.html │ ├── help-extraVars.html │ ├── help-import-tower-output.html │ ├── help-import-workflow-child-output.html │ ├── help-inventory.html │ ├── help-jobTags.html │ ├── help-jobType.html │ ├── help-limit.html │ ├── help-project-revision.html │ ├── help-project.html │ ├── help-remove-color.html │ ├── help-scmBranch.html │ ├── help-skipJobTags.html │ ├── help-templateId.html │ ├── help-templateType.html │ ├── help-throwExceptionWhenFail.html │ ├── help-towerCredentials.html │ ├── help-towerServer.html │ ├── help-trustCert.html │ ├── help-url.html │ └── help-verbose.html └── test └── main └── java └── org └── jenkinsci └── plugins └── ansible_tower └── util └── TowerVersionTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- 1 | buildPlugin() 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/README.md -------------------------------------------------------------------------------- /assets/async_pipeline.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/async_pipeline.groovy -------------------------------------------------------------------------------- /assets/basic_pipeline.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/basic_pipeline.groovy -------------------------------------------------------------------------------- /assets/color_pipeline.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/color_pipeline.groovy -------------------------------------------------------------------------------- /assets/delete_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/delete_tokens.py -------------------------------------------------------------------------------- /assets/local_jenkins_project_files/export_values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/local_jenkins_project_files/export_values.yml -------------------------------------------------------------------------------- /assets/local_jenkins_project_files/fail_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/local_jenkins_project_files/fail_playbook.yml -------------------------------------------------------------------------------- /assets/local_jenkins_project_files/long_job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/local_jenkins_project_files/long_job.yml -------------------------------------------------------------------------------- /assets/local_jenkins_project_files/multi_cred.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/local_jenkins_project_files/multi_cred.yml -------------------------------------------------------------------------------- /assets/local_jenkins_project_files/simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/local_jenkins_project_files/simple.yml -------------------------------------------------------------------------------- /assets/local_jenkins_project_files/skip_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/local_jenkins_project_files/skip_tags.yml -------------------------------------------------------------------------------- /assets/local_jenkins_project_files/sleep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/local_jenkins_project_files/sleep.yml -------------------------------------------------------------------------------- /assets/setup_tower_instance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/setup_tower_instance.txt -------------------------------------------------------------------------------- /assets/tower_assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/assets/tower_assets.json -------------------------------------------------------------------------------- /docs/images/configuration-0.7.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/docs/images/configuration-0.7.0.png -------------------------------------------------------------------------------- /docs/images/project_revision_freestyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/docs/images/project_revision_freestyle.png -------------------------------------------------------------------------------- /docs/images/project_sync_freestyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/docs/images/project_sync_freestyle.png -------------------------------------------------------------------------------- /docs/images/run_job_freestyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/docs/images/run_job_freestyle.png -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTower.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTower.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerGlobalConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerGlobalConfig.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectRevisionFreestyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectRevisionFreestyle.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectRevisionStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectRevisionStep.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectSyncFreestyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectSyncFreestyle.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectSyncStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectSyncStep.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerRunner.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/AnsibleTowerStep.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/exceptions/AnsibleTowerDoesNotSupportAuthToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/exceptions/AnsibleTowerDoesNotSupportAuthToken.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/exceptions/AnsibleTowerException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/exceptions/AnsibleTowerException.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/exceptions/AnsibleTowerItemDoesNotExist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/exceptions/AnsibleTowerItemDoesNotExist.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/exceptions/AnsibleTowerRefusesToGiveToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/exceptions/AnsibleTowerRefusesToGiveToken.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/util/GetUserPageCredentials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/util/GetUserPageCredentials.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerConnector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerConnector.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerInstallation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerInstallation.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerJob.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerLogger.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerProject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerProject.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerProjectSync.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerProjectSync.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerVersion.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/ansible_tower/util/TrustingSSLSocketFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/java/org/jenkinsci/plugins/ansible_tower/util/TrustingSSLSocketFactory.java -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTower/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTower/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTowerGlobalConfig/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTowerGlobalConfig/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectRevisionFreestyle/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectRevisionFreestyle/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectRevisionStep/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectRevisionStep/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectSyncFreestyle/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectSyncFreestyle/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectSyncStep/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTowerProjectSyncStep/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTowerStep/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/ansible_tower/AnsibleTowerStep/config.jelly -------------------------------------------------------------------------------- /src/main/webapp/help-async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-async.html -------------------------------------------------------------------------------- /src/main/webapp/help-credential.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-credential.html -------------------------------------------------------------------------------- /src/main/webapp/help-displayName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-displayName.html -------------------------------------------------------------------------------- /src/main/webapp/help-enableDebugging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-enableDebugging.html -------------------------------------------------------------------------------- /src/main/webapp/help-extraVars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-extraVars.html -------------------------------------------------------------------------------- /src/main/webapp/help-import-tower-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-import-tower-output.html -------------------------------------------------------------------------------- /src/main/webapp/help-import-workflow-child-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-import-workflow-child-output.html -------------------------------------------------------------------------------- /src/main/webapp/help-inventory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-inventory.html -------------------------------------------------------------------------------- /src/main/webapp/help-jobTags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-jobTags.html -------------------------------------------------------------------------------- /src/main/webapp/help-jobType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-jobType.html -------------------------------------------------------------------------------- /src/main/webapp/help-limit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-limit.html -------------------------------------------------------------------------------- /src/main/webapp/help-project-revision.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-project-revision.html -------------------------------------------------------------------------------- /src/main/webapp/help-project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-project.html -------------------------------------------------------------------------------- /src/main/webapp/help-remove-color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-remove-color.html -------------------------------------------------------------------------------- /src/main/webapp/help-scmBranch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-scmBranch.html -------------------------------------------------------------------------------- /src/main/webapp/help-skipJobTags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-skipJobTags.html -------------------------------------------------------------------------------- /src/main/webapp/help-templateId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-templateId.html -------------------------------------------------------------------------------- /src/main/webapp/help-templateType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-templateType.html -------------------------------------------------------------------------------- /src/main/webapp/help-throwExceptionWhenFail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-throwExceptionWhenFail.html -------------------------------------------------------------------------------- /src/main/webapp/help-towerCredentials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-towerCredentials.html -------------------------------------------------------------------------------- /src/main/webapp/help-towerServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-towerServer.html -------------------------------------------------------------------------------- /src/main/webapp/help-trustCert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-trustCert.html -------------------------------------------------------------------------------- /src/main/webapp/help-url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-url.html -------------------------------------------------------------------------------- /src/main/webapp/help-verbose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/src/main/webapp/help-verbose.html -------------------------------------------------------------------------------- /test/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/ansible-tower-plugin/HEAD/test/main/java/org/jenkinsci/plugins/ansible_tower/util/TowerVersionTest.java --------------------------------------------------------------------------------