This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # nexus 2.x | |
| # Assuming you run this command against the directory the jar sits in | |
| # | |
| # r - repository | |
| # hasPom - whether you are supplying the pom or you want one generated. If generated g, a, v, p, and c are not needed | |
| # e - extension | |
| # g - group id | |
| # a - artifact id | |
| # v - version | |
| # p - packaging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| image: ubuntu:zesty | |
| services: | |
| - mariadb | |
| variables: | |
| MYSQL_DATABASE: smsclub_old | |
| MYSQL_ROOT_PASSWORD: root | |
| before_script: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def jobName = '(...)' | |
| Jenkins.instance.getItemByFullName(jobName).builds.findAll { it.result == Result.FAILURE}.each { it.delete() } |