spring-boot/ci/images
Andy Wilkinson 98ee724ec6 Stop using Bintray to publish to Maven Central
This commit reworks the CI pipeline to remove the use of Bintray for
publishing to Maven Central. In its place it adds a new
publishToCentral command to the release scripts. This command can be
used to publish a directory tree of artifacts to the Maven Central
gateway hosted by Sonatype.

Publishing consists of 4 steps:

1. Create the staging repository
2. Deploy artifacts to the repository
3. Close the repository
4. Release the repository

The command requires 3 arguments:

1. The type of release being performed
2. Location of a build info JSON file that describes the release
   that is to be deployed
3. Root of a directory structure, in Maven repository layout, that
   contains the artifacts to be deployed

Closes gh-25107
2021-02-17 16:50:02 +00:00
..
ci-image Upgrade CI images to Ubuntu Focal 20210119 2021-01-28 08:58:07 +00:00
ci-image-jdk11 Upgrade CI images to Ubuntu Focal 20210119 2021-01-28 08:58:07 +00:00
ci-image-jdk15 Upgrade CI images to Ubuntu Focal 20210119 2021-01-28 08:58:07 +00:00
releasescripts Stop using Bintray to publish to Maven Central 2021-02-17 16:50:02 +00:00
build-release-scripts.sh
docker-lib.sh
get-docker-url.sh Upgrade CI to Docker 19.03.14 2020-12-11 08:35:19 +01:00
get-jdk-url.sh Upgrade Java 15 CI image to jdk-15.0.2+7 2021-01-28 09:27:26 +00:00
README.adoc Fix README 2020-12-10 14:13:05 -08:00
setup.sh Merge branch '2.2.x' into 2.3.x 2020-09-25 12:42:38 -07:00

== CI Images

These images are used by CI to run the actual builds.

To build the image locally run the following from this directory:

----
$ docker build --no-cache -f <image-folder>/Dockerfile .
----

For example

----
$ docker build --no-cache -f ci-image/Dockerfile .
----

To test run:

----
$ docker run -it --entrypoint /bin/bash <SHA>                                                                                                                                                                     ✈
----