├── .gitignore ├── .gitmodules ├── .project ├── CODE_OF_CONDUCT.adoc ├── CONTRIBUTING.adoc ├── LICENSE ├── README.adoc ├── concourse-java.sh ├── test.sh └── test ├── bump_version.bats ├── cleanup_maven_repo.bats ├── fixtures ├── pom_with_revision.xml └── pom_without_revision.xml ├── get_next_release.bats ├── get_revision_from_pom.bats ├── mock └── mvnw │ ├── failure │ ├── build.log │ ├── mvnw │ └── output │ └── success │ ├── build.log │ ├── mvnw │ └── output ├── run_maven.bats ├── set_revision_to_pom.bats ├── setup_symlinks.bats └── strip_snapshot_suffix.bats /.gitignore: -------------------------------------------------------------------------------- 1 | pid 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/.gitmodules -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/.project -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/CODE_OF_CONDUCT.adoc -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/README.adoc -------------------------------------------------------------------------------- /concourse-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/concourse-java.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test.sh -------------------------------------------------------------------------------- /test/bump_version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/bump_version.bats -------------------------------------------------------------------------------- /test/cleanup_maven_repo.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/cleanup_maven_repo.bats -------------------------------------------------------------------------------- /test/fixtures/pom_with_revision.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/fixtures/pom_with_revision.xml -------------------------------------------------------------------------------- /test/fixtures/pom_without_revision.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/fixtures/pom_without_revision.xml -------------------------------------------------------------------------------- /test/get_next_release.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/get_next_release.bats -------------------------------------------------------------------------------- /test/get_revision_from_pom.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/get_revision_from_pom.bats -------------------------------------------------------------------------------- /test/mock/mvnw/failure/build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/mock/mvnw/failure/build.log -------------------------------------------------------------------------------- /test/mock/mvnw/failure/mvnw: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | cat output 4 | exit 1 -------------------------------------------------------------------------------- /test/mock/mvnw/failure/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/mock/mvnw/failure/output -------------------------------------------------------------------------------- /test/mock/mvnw/success/build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/mock/mvnw/success/build.log -------------------------------------------------------------------------------- /test/mock/mvnw/success/mvnw: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | cat output -------------------------------------------------------------------------------- /test/mock/mvnw/success/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/mock/mvnw/success/output -------------------------------------------------------------------------------- /test/run_maven.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/run_maven.bats -------------------------------------------------------------------------------- /test/set_revision_to_pom.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/set_revision_to_pom.bats -------------------------------------------------------------------------------- /test/setup_symlinks.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/setup_symlinks.bats -------------------------------------------------------------------------------- /test/strip_snapshot_suffix.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-io/concourse-java-scripts/HEAD/test/strip_snapshot_suffix.bats --------------------------------------------------------------------------------