diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 000000000..9d25faed3
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,168 @@
+pipeline {
+ agent none
+
+ triggers {
+ pollSCM 'H/10 * * * *'
+ upstream(upstreamProjects: "spring-data-commons/2.1.x", threshold: hudson.model.Result.SUCCESS)
+ }
+
+ stages {
+ stage("Test") {
+ parallel {
+ stage("test: baseline") {
+ agent {
+ docker {
+ image 'adoptopenjdk/openjdk8:alpine'
+ args '-v $HOME/.m2:/root/.m2'
+ }
+ }
+ steps {
+ sh "PROFILE=none ci/test.sh"
+ }
+ }
+ stage("test: hibernate-next") {
+ agent {
+ docker {
+ image 'adoptopenjdk/openjdk8:alpine'
+ args '-v $HOME/.m2:/root/.m2'
+ }
+ }
+ steps {
+ sh "PROFILE=hibernate-next ci/test.sh"
+ }
+ }
+ stage("test: hibernate-53") {
+ agent {
+ docker {
+ image 'adoptopenjdk/openjdk8:alpine'
+ args '-v $HOME/.m2:/root/.m2'
+ }
+ }
+ steps {
+ sh "PROFILE=hibernate-53 ci/test.sh"
+ }
+ }
+ stage("test: hibernate-53-next") {
+ agent {
+ docker {
+ image 'adoptopenjdk/openjdk8:alpine'
+ args '-v $HOME/.m2:/root/.m2'
+ }
+ }
+ steps {
+ sh "PROFILE=hibernate-53-next ci/test.sh"
+ }
+ }
+ stage("test: hibernate-54") {
+ agent {
+ docker {
+ image 'adoptopenjdk/openjdk8:alpine'
+ args '-v $HOME/.m2:/root/.m2'
+ }
+ }
+ steps {
+ sh "PROFILE=hibernate-54 ci/test.sh"
+ }
+ }
+ stage("test: hibernate-54-next") {
+ agent {
+ docker {
+ image 'adoptopenjdk/openjdk8:alpine'
+ args '-v $HOME/.m2:/root/.m2'
+ }
+ }
+ steps {
+ sh "PROFILE=hibernate-54-next ci/test.sh"
+ }
+ }
+ stage("test: eclipselink-next") {
+ agent {
+ docker {
+ image 'adoptopenjdk/openjdk8:alpine'
+ args '-v $HOME/.m2:/root/.m2'
+ }
+ }
+ steps {
+ sh "PROFILE=eclipselink-next ci/test.sh"
+ }
+ }
+ stage("test: eclipselink-27") {
+ agent {
+ docker {
+ image 'adoptopenjdk/openjdk8:alpine'
+ args '-v $HOME/.m2:/root/.m2'
+ }
+ }
+ steps {
+ sh "PROFILE=eclipselink-27 ci/test.sh"
+ }
+ }
+ stage("test: eclipselink-27-next") {
+ agent {
+ docker {
+ image 'adoptopenjdk/openjdk8:alpine'
+ args '-v $HOME/.m2:/root/.m2'
+ }
+ }
+ steps {
+ sh "PROFILE=eclipselink-27-next ci/test.sh"
+ }
+ }
+ }
+ }
+ stage('Release to artifactory') {
+ when {
+ branch 'issue/*'
+ }
+ agent {
+ docker {
+ image 'adoptopenjdk/openjdk8:alpine'
+ args '-v $HOME/.m2:/root/.m2'
+ }
+ }
+
+ environment {
+ ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
+ }
+
+ steps {
+ sh "USERNAME=${ARTIFACTORY_USR} PASSWORD=${ARTIFACTORY_PSW} PROFILE=ci,snapshot ci/build.sh"
+ }
+ }
+ stage('Release to artifactory with docs') {
+ when {
+ branch '2.1.x'
+ }
+ agent {
+ docker {
+ image 'adoptopenjdk/openjdk8:alpine'
+ args '-v $HOME/.m2:/root/.m2'
+ }
+ }
+
+ environment {
+ ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
+ }
+
+ steps {
+ sh "USERNAME=${ARTIFACTORY_USR} PASSWORD=${ARTIFACTORY_PSW} PROFILE=ci,snapshot ci/build.sh"
+ }
+ }
+ }
+
+ post {
+ changed {
+ script {
+ slackSend(
+ color: (currentBuild.currentResult == 'SUCCESS') ? 'good' : 'danger',
+ channel: '#spring-data-dev',
+ message: "${currentBuild.fullDisplayName} - `${currentBuild.currentResult}`\n${env.BUILD_URL}")
+ emailext(
+ subject: "[${currentBuild.fullDisplayName}] ${currentBuild.currentResult}",
+ mimeType: 'text/html',
+ recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'RequesterRecipientProvider']],
+ body: "${currentBuild.fullDisplayName} is reported as ${currentBuild.currentResult}")
+ }
+ }
+ }
+}
diff --git a/ci/README.adoc b/ci/README.adoc
new file mode 100644
index 000000000..bbe494279
--- /dev/null
+++ b/ci/README.adoc
@@ -0,0 +1,39 @@
+== Running CI tasks locally
+
+Since this pipeline is purely Docker-based, it's easy to:
+
+* Debug what went wrong on your local machine.
+* Test out a a tweak to your `test.sh` script before sending it out.
+* Experiment against a new image before submitting your pull request.
+
+All of these use cases are great reasons to essentially run what the CI server does on your local machine.
+
+IMPORTANT: To do this you must have Docker installed on your machine.
+
+1. `docker run -it --mount type=bind,source="$(pwd)",target=/spring-data-jpa-github adoptopenjdk/openjdk8:alpine /bin/sh`
++
+This will launch the Docker image and mount your source code at `spring-data-jpa-github`.
++
+2. `cd spring-data-jpa-github`
++
+Next, run the `test.sh` script from inside the container:
++
+3. `PROFILE=none ci/test.sh` (or whatever profile you need to test out)
+
+Since the container is binding to your source, you can make edits from your IDE and continue to run build jobs.
+
+If you need to test the `build.sh` script, do this:
+
+1. `docker run -it --mount type=bind,source="$(pwd)",target=/spring-data-jpa-github adoptopenjdk/openjdk8:alpine /bin/sh`
++
+This will launch the Docker image and mount your source code at `spring-data-jpa-github`.
++
+2. `cd spring-data-jpa-github`
++
+Next, run the `build.sh` script from inside the container:
++
+3. `ci/build.sh`
+
+IMPORTANT: This will attempt to deploy to artifactory, but without credentials, it will fail, leaving you simply with a built artifact.
+
+NOTE: Docker containers can eat up disk space fast! From time to time, run `docker system prune` to clean out old images.
\ No newline at end of file
diff --git a/ci/build.sh b/ci/build.sh
new file mode 100755
index 000000000..2aba1cf4f
--- /dev/null
+++ b/ci/build.sh
@@ -0,0 +1,5 @@
+#!/usr/bin/env sh
+
+set -euo pipefail
+
+./mvnw -P${PROFILE} -Dmaven.test.skip=true clean deploy -B
diff --git a/ci/test.sh b/ci/test.sh
new file mode 100755
index 000000000..91173e30d
--- /dev/null
+++ b/ci/test.sh
@@ -0,0 +1,5 @@
+#!/usr/bin/env sh
+
+set -euo pipefail
+
+./mvnw -P${PROFILE} clean dependency:list test -Dsort -Dbundlor.enabled=false -B
diff --git a/pom.xml b/pom.xml
index f60609327..a1fb20689 100644
--- a/pom.xml
+++ b/pom.xml
@@ -131,6 +131,111 @@
+
+ snapshot
+
+
+
+
+ org.jfrog.buildinfo
+ artifactory-maven-plugin
+ 2.6.1
+ false
+
+
+ build-info
+
+ publish
+
+
+
+ {{BUILD_URL}}
+
+
+ spring-data-jpa
+ spring-data-jpa
+ false
+ *:*:*:*@zip
+
+
+ https://repo.spring.io
+ {{USERNAME}}
+ {{PASSWORD}}
+ libs-snapshot-local
+ libs-snapshot-local
+
+
+
+
+
+
+
+
+
+ docs
+
+
+
+
+ maven-antrun-plugin
+ 1.8
+
+
+ copy-schemas
+ prepare-package
+
+ run
+
+
+
+
+
+
+
+
+
+
+ package-and-attach-docs-zip
+ package
+
+ run
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.codehaus.mojo
+ build-helper-maven-plugin
+ 1.10
+
+
+ attach-zip
+
+ attach-artifact
+
+ package
+
+
+
+ ${project.build.directory}/${project.artifactId}-${project.version}.zip
+ zip
+
+
+
+
+
+
+
+
+
release
@@ -138,6 +243,7 @@
org.jfrog.buildinfo
artifactory-maven-plugin
+ 2.6.1
false
@@ -460,10 +566,6 @@
org.apache.maven.plugins
maven-assembly-plugin
-
- org.codehaus.mojo
- wagon-maven-plugin
-
org.asciidoctor
asciidoctor-maven-plugin