diff --git a/Jenkinsfile b/Jenkinsfile
index 7dec39ff..8d1cc240 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,84 +1,136 @@
-properties([
- buildDiscarder(logRotator(numToKeepStr: '10')),
- pipelineTriggers([
+def p = [:]
+
+node {
+ checkout scm
+ p = readProperties interpolate: true, file: 'ci/pipeline.properties'
+}
+
+pipeline {
+
+ agent any
+
+ options {
+ buildDiscarder(logRotator(numToKeepStr: '10'))
+ disableConcurrentBuilds()
+ }
+
+ triggers {
cron('@daily')
- ]),
-])
-
-def SUCCESS = hudson.model.Result.SUCCESS.toString()
-currentBuild.result = SUCCESS
-
-try {
- parallel check: {
- stage('Check') {
- timeout(time: 10, unit: 'MINUTES') {
- node('linux') {
- checkout scm
- try {
- withEnv(["JAVA_HOME=${tool 'jdk8'}"]) {
- sh './gradlew clean check --no-daemon --refresh-dependencies --stacktrace'
+ }
+
+ stages {
+
+ stage('Build') {
+ options {
+ timeout(time: 15, unit: "MINUTES")
+ }
+ steps {
+ script {
+ docker.image(p['docker.container.image.java.main']).inside(p['docker.container.inside.env.full']) {
+
+ sh "echo 'Setup build environment...'"
+ sh "ci/setup.sh"
+
+ // Cleanup any prior build system resources
+ try {
+ sh "echo 'Clean up GemFire/Geode files & build artifacts...'"
+ sh "ci/cleanupGemFiles.sh"
+ sh "ci/cleanupArtifacts.sh"
+ }
+ catch (ignore) { }
+
+ // Run the SBDG project Gradle build using JDK 8 inside Docker
+ try {
+ sh "echo 'Building SSDG...'"
+ sh "ci/check.sh"
+ }
+ catch (e) {
+ currentBuild.result = "FAILED: build"
+ throw e
+ }
+ finally {
+ junit '**/build/test-results/*/*.xml'
}
}
- catch (e) {
- currentBuild.result = 'FAILED: check'
- throw e
- }
- finally {
- junit '**/build/test-results/*/*.xml'
+ }
+ }
+ }
+
+/*
+ stage ('Deploy Docs') {
+ options {
+ timeout(time: 15, unit: "MINUTES")
+ }
+ steps {
+ script {
+ docker.image(p['docker.container.image.java.main']).inside(p['docker.container.inside.env.full']) {
+ withCredentials([file(credentialsId: 'docs.spring.io-jenkins_private_ssh_key', variable: 'DEPLOY_SSH_KEY')]) {
+ try {
+ sh "ci/deployDocs.sh"
+ }
+ catch (e) {
+ currentBuild.result = "FAILED: deploy docs"
+ throw e
+ }
+ }
}
}
}
}
- }
+ */
- if (currentBuild.result == 'SUCCESS') {
- parallel artifacts: {
- stage('Deploy Artifacts') {
- node('linux') {
- checkout scm
- try {
+ stage ('Deploy Artifacts') {
+ options {
+ timeout(time: 15, unit: "MINUTES")
+ }
+ steps {
+ script {
+ docker.image(p['docker.container.image.java.main']).inside(p['docker.container.inside.env.full']) {
withCredentials([file(credentialsId: 'spring-signing-secring.gpg', variable: 'SIGNING_KEYRING_FILE')]) {
withCredentials([string(credentialsId: 'spring-gpg-passphrase', variable: 'SIGNING_PASSWORD')]) {
withCredentials([usernamePassword(credentialsId: 'oss-token', passwordVariable: 'OSSRH_PASSWORD', usernameVariable: 'OSSRH_USERNAME')]) {
withCredentials([usernamePassword(credentialsId: '02bd1690-b54f-4c9f-819d-a77cb7a9822c', usernameVariable: 'ARTIFACTORY_USERNAME', passwordVariable: 'ARTIFACTORY_PASSWORD')]) {
- withEnv(["JAVA_HOME=${tool 'jdk8'}"]) {
- sh './gradlew deployArtifacts finalizeDeployArtifacts --no-daemon --refresh-dependencies --stacktrace -Psigning.secretKeyRingFile=$SIGNING_KEYRING_FILE -Psigning.keyId=$SPRING_SIGNING_KEYID -Psigning.password=$SIGNING_PASSWORD -PossrhUsername=$OSSRH_USERNAME -PossrhPassword=$OSSRH_PASSWORD -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD'
+ try {
+ sh "ci/deployArtifacts.sh"
+ }
+ catch (e) {
+ currentBuild.result = "FAILED: deploy artifacts"
+ throw e
}
}
}
}
}
}
- catch (e) {
- currentBuild.result = 'FAILED: artifacts'
- throw e
- }
}
}
}
}
-}
-finally {
- def buildStatus = currentBuild.result
- def buildNotSuccess = !SUCCESS.equals(buildStatus)
- def lastBuildNotSuccess = !SUCCESS.equals(currentBuild.previousBuild?.result)
+ post {
+ changed {
+ script {
- if (buildNotSuccess || lastBuildNotSuccess) {
- stage('Notify') {
- node {
+ def BUILD_SUCCESS = hudson.model.Result.SUCCESS.toString()
+ def buildStatus = currentBuild.result
+ def buildNotSuccess = !BUILD_SUCCESS.equals(buildStatus)
+ def previousBuildStatus = currentBuild.previousBuild?.result
+ def previousBuildNotSuccess = !BUILD_SUCCESS.equals(previousBuildStatus)
- final def RECIPIENTS = [[$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider']]
+ if (buildNotSuccess || previousBuildNotSuccess) {
- def subject = "${buildStatus}: Build ${env.JOB_NAME} ${env.BUILD_NUMBER} status is now ${buildStatus}"
- def details = "The build status changed to ${buildStatus}. For details see ${env.BUILD_URL}"
+ def RECIPIENTS = [[$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider']]
+ def subject = "${buildStatus}: Build ${env.JOB_NAME} ${env.BUILD_NUMBER} status is now ${buildStatus}"
+ def details = "The build status changed to ${buildStatus}. For details see ${env.BUILD_URL}"
- emailext(
- subject: subject,
- body: details,
- recipientProviders: RECIPIENTS,
- to: "$GEODE_TEAM_EMAILS"
- )
+ emailext(subject: subject, body: details, recipientProviders: RECIPIENTS, to: "$GEODE_TEAM_EMAILS")
+
+/*
+ slackSend(color: (currentBuild.currentResult == 'SUCCESS') ? 'good' : 'danger',
+ channel: '#spring-data-dev',
+ message: "${currentBuild.fullDisplayName} - `${currentBuild.currentResult}`\n${env.BUILD_URL}")
+ */
+ }
}
}
}
diff --git a/build.gradle b/build.gradle
index 03fb066c..71944faa 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,3 +1,5 @@
+import io.spring.gradle.convention.Utils
+
buildscript {
dependencies {
classpath 'io.spring.gradle:spring-build-conventions:0.0.38'
@@ -41,16 +43,19 @@ allprojects {
}
}
-description = 'Spring Test Framework for Apache Geode and VMware Tanzu GemFire using Spring Data.'
+description = 'Spring Test Framework for Apache Geode'
+// Define dependency version overrides
//ext['spring.version'] = "$springVersion"
ext['spring-framework.version'] = "$springVersion"
ext['spring-data-bom.version'] = "$springDataBomVersion"
-ext.releaseBuild = version.endsWith('RELEASE')
-ext.snapshotBuild = version.endsWith('SNAPSHOT')
-ext.milestoneBuild = !(releaseBuild || snapshotBuild)
+// Define Gradle build in terms of snapshot, milestone or release build.
+ext.milestoneBuild = Utils.isMilestone(project)
+ext.releaseBuild = Utils.isRelease(project)
+ext.snapshotBuild = Utils.isSnapshot(project)
+// Define Gradle buildscript plugin to modify the generated Maven POM.
ext.MAVEN_POM_EDITOR_GRADLE = "$rootDir/gradle/maven-pom-editor.gradle"
nohttp {
diff --git a/ci/check.sh b/ci/check.sh
new file mode 100755
index 00000000..1e04b0d9
--- /dev/null
+++ b/ci/check.sh
@@ -0,0 +1,6 @@
+#!/bin/bash -x
+
+set -eou pipefail
+
+GRADLE_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home -Djava.io.tmpdir=/tmp" \
+ ./gradlew clean check --no-daemon --refresh-dependencies --stacktrace
diff --git a/ci/cleanupArtifacts.sh b/ci/cleanupArtifacts.sh
new file mode 100755
index 00000000..76f2de6c
--- /dev/null
+++ b/ci/cleanupArtifacts.sh
@@ -0,0 +1,7 @@
+#!/bin/bash -x
+
+rm -Rf ./.gradle
+rm -Rf ./.m2
+rm -Rf `find . -name "build" | grep -v "src"`
+rm -Rf `find . -name "target" | grep -v "src"`
+exit 0
diff --git a/ci/cleanupGemFiles.sh b/ci/cleanupGemFiles.sh
new file mode 100755
index 00000000..5918c838
--- /dev/null
+++ b/ci/cleanupGemFiles.sh
@@ -0,0 +1,9 @@
+#!/bin/bash -x
+
+rm -Rf `find . -name "BACKUPDEFAULT*"`
+rm -Rf `find . -name "ConfigDiskDir*"`
+rm -Rf `find . -name "locator*" | grep -v "src" | grep -v "locator-application"`
+rm -Rf `find . -name "newDB"`
+rm -Rf `find . -name "server" | grep -v "src"`
+rm -Rf `find . -name "*.log"`
+exit 0
diff --git a/ci/deployArtifacts.sh b/ci/deployArtifacts.sh
new file mode 100755
index 00000000..f63e8fec
--- /dev/null
+++ b/ci/deployArtifacts.sh
@@ -0,0 +1,20 @@
+#!/bin/bash -x
+
+set -eou pipefail
+
+echo "Deploying artifacts on host [$HOSTNAME]"
+
+# User ID 1001 is "jenkins"
+# Group ID 1001 is "jenkins"
+# Syntax: `chown -R userId:groupId .`
+chown -R 1001:1001 .
+
+GRADLE_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home -Djava.io.tmpdir=/tmp" \
+ ./gradlew deployArtifacts finalizeDeployArtifacts --no-build-cache --no-configuration-cache --no-daemon --stacktrace \
+ -PartifactoryUsername=$ARTIFACTORY_USERNAME \
+ -PartifactoryPassword=$ARTIFACTORY_PASSWORD \
+ -PossrhUsername=$OSSRH_USERNAME \
+ -PossrhPassword=$OSSRH_PASSWORD \
+ -Psigning.keyId=$SPRING_SIGNING_KEYID \
+ -Psigning.password=$SIGNING_PASSWORD \
+ -Psigning.secretKeyRingFile=$SIGNING_KEYRING_FILE
diff --git a/ci/deployDocs.sh b/ci/deployDocs.sh
new file mode 100755
index 00000000..46bb8659
--- /dev/null
+++ b/ci/deployDocs.sh
@@ -0,0 +1,15 @@
+#!/bin/bash -x
+
+set -eou pipefail
+
+echo "Deploying docs on host [$HOSTNAME]"
+
+# User ID 1001 is "jenkins"
+# Group ID 1001 is "jenkins"
+# Syntax: `chown -R userId:groupId .`
+chown -R 1001:1001 .
+
+GRADLE_OPTS="--add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/sun.nio.ch=ALL-UNNAMED -Duser.name=jenkins -Duser.home=/tmp/jenkins-home -Djava.io.tmpdir=/tmp" \
+ ./gradlew deployDocs --no-daemon --stacktrace \
+ -PdeployDocsSshKeyPath=$DEPLOY_SSH_KEY \
+ -PdeployDocsSshUsername=$SPRING_DOCS_USERNAME
diff --git a/ci/pipeline.properties b/ci/pipeline.properties
new file mode 100644
index 00000000..735c7dae
--- /dev/null
+++ b/ci/pipeline.properties
@@ -0,0 +1,14 @@
+# Java (JDK) versions
+java.main.tag=8u322-b06-jdk
+
+# Docker Container Images
+docker.container.image.java.main=harbor-repo.vmware.com/dockerhub-proxy-cache/library/eclipse-temurin:${java.main.tag}
+
+# Docker Environment Settings
+docker.container.inside.env.basic=-u root -v $HOME:/tmp/jenkins-home -v /tmp:/tmp
+docker.container.inside.env.full=-u root -v /var/run/docker.sock:/var/run/docker.sock -v /usr/bin/docker:/usr/bin/docker -v /tmp:/tmp -v $HOME:/tmp/jenkins-home
+
+# Credentials
+artifactory.credentials=02bd1690-b54f-4c9f-819d-a77cb7a9822c
+docker.credentials=hub.docker.com-springbuildmaster
+docker.registry=
diff --git a/ci/setup.sh b/ci/setup.sh
new file mode 100755
index 00000000..2bc44847
--- /dev/null
+++ b/ci/setup.sh
@@ -0,0 +1,11 @@
+#!/bin/bash -x
+
+# User ID 1001 is "jenkins"
+# Group ID 1001 is "jenkins"
+# Syntax: `chown -R userId:groupId .`
+
+echo "Logged into Jenkins CI as user [$USER] with home directory [$HOME] in the current working directory [$PWD]"
+chown -R 1001:1001 .
+#echo "Logging into Docker..."
+#docker login --username ${DOCKER_HUB_USR} --password ${DOCKER_HUB_PSW}
+exit 0
diff --git a/gradle.properties b/gradle.properties
index 4f090cd4..9eb0984a 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,16 +1,15 @@
antlrVersion=2.7.7
-apacheGeodeVersion=1.13.4
-assertjVersion=3.21.0
+apacheGeodeVersion=1.13.8
+assertjVersion=3.22.0
findbugsVersion=3.0.2
junitVersion=4.13.2
-lombokVersion=1.18.22
-mockitoVersion=4.1.0
+lombokVersion=1.18.24
+mockitoVersion=4.4.0
multithreadedtcVersion=1.01
-pivotalGemFireVersion=9.10.11
-springVersion=5.3.13
-springBootVersion=2.5.7
-springDataBomVersion=2021.0.7
-springDataGemFireVersion=2.5.7
-springDataGeodeVersion=2.5.7
+pivotalGemFireVersion=9.10.15
+springVersion=5.3.19
+springBootVersion=2.5.12
+springDataBomVersion=2021.0.11
+springDataGeodeVersion=2.5.11
springShellVersion=1.2.0.RELEASE
-version=0.0.29-SNAPSHOT
+version=0.1.3-PASCAL-SNAPSHOT
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index 3ab0b725..ec991f9a 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.1-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
diff --git a/pom.xml b/pom.xml
index eefb9087..7adfe41a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,23 +8,22 @@
org.springframework.data.build
spring-data-parent
- 2.5.7
+ 2.5.11
org.springframework.data
spring-test-data-geode-build
- 0.0.29-SNAPSHOT
+ 0.1.3-PASCAL-SNAPSHOT
pom
spring-data-geode-test
- Spring Test Framework for Apache Geode and VMware Tanzu GemFire
+ Spring Test Framework for Apache Geode
This project introduces a Spring Data module building on the Spring Framework's TestContext,
- used to write both Unit and Integration Tests for Spring Data for Apache Geode
- as well as Spring Data for VMware Tanzu GemFire applications.
+ used to write Unit and Integration Tests for Spring Data for Apache Geode applications.
https://github.com/jxblum/spring-data-tests-4-gemfire
@@ -60,18 +59,16 @@
jblum
John Blum
- jblum at pivotal dot io
- Pivotal Software, Inc.
+ jblum at vmware dot com
+ VMware, Inc.
https://www.spring.io
Spring Data Team
- Spring Data Cassandra Project Lead (Committer)
- Spring Data GemFire Project Lead (Committer)
- Spring Data Geode Project Lead (Committer)
- Spring Session Data GemFire Project Lead (Committer)
- Spring Session Data Geode Project Lead (Committer)
- Spring Boot Data GemFire Project Lead (Committer)
- Spring Boot Data Geode Project Lead (Committer)
+ Spring Data for Apache Cassandra Project Lead (Committer)
+ Spring Data for Apache Geode Project Lead (Committer)
+ Spring Test for Apache Geode Project Lead (Committer)
+ Spring Session for Apache Geode Project Lead (Committer)
+ Spring Boot for Apache Geode Project Lead (Committer)
Apache Geode Committer
@@ -82,18 +79,18 @@
3.3
2.19.1
UTF-8
- 1.13.4
- 3.21.0
+ 1.13.8
+ 3.22.0
4.13.2
- 2.12.1
- 1.2.3
- 1.18.22
- 4.1.0
+ 2.17.2
+ 1.2.11
+ 1.18.24
+ 4.4.0
1.01
- 9.10.11
- 5.3.13
- 2.5.7
- 2021.0.7
+ 9.10.15
+ 5.3.19
+ 2.5.12
+ 2021.0.11
1.2.0.RELEASE
@@ -176,6 +173,13 @@
geode-wan
${pivotal-gemfire.version}
+
+ org.springframework
+ spring-framework-bom
+ ${spring.version}
+ import
+ pom
+
org.springframework.boot
spring-boot-starter
diff --git a/spring-data-geode-test/pom.xml b/spring-data-geode-test/pom.xml
index 88c49909..6054b680 100644
--- a/spring-data-geode-test/pom.xml
+++ b/spring-data-geode-test/pom.xml
@@ -8,7 +8,7 @@
org.springframework.data
spring-test-data-geode-build
- 0.0.29-SNAPSHOT
+ 0.1.3-PASCAL-SNAPSHOT
spring-data-geode-test
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/context/annotation/DependencyOf.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/context/annotation/DependencyOf.java
index f0bc35ee..fe41a116 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/context/annotation/DependencyOf.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/context/annotation/DependencyOf.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/context/annotation/DependencyOfBeanFactoryPostProcessor.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/context/annotation/DependencyOfBeanFactoryPostProcessor.java
index 9c71655f..0e0a1c47 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/context/annotation/DependencyOfBeanFactoryPostProcessor.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/context/annotation/DependencyOfBeanFactoryPostProcessor.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/DependencyOfAnnotationContextCustomizer.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/DependencyOfAnnotationContextCustomizer.java
index 8e4cbe45..443bf49f 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/DependencyOfAnnotationContextCustomizer.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/DependencyOfAnnotationContextCustomizer.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/DependencyOfAnnotationContextCustomizerFactory.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/DependencyOfAnnotationContextCustomizerFactory.java
index db779779..8f3f33b5 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/DependencyOfAnnotationContextCustomizerFactory.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/DependencyOfAnnotationContextCustomizerFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/TestContextApplicationEventPublisherAdapter.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/TestContextApplicationEventPublisherAdapter.java
index daaf9123..e85d1b96 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/TestContextApplicationEventPublisherAdapter.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/TestContextApplicationEventPublisherAdapter.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/cache/ConfigurableCacheAwareContextLoaderDelegate.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/cache/ConfigurableCacheAwareContextLoaderDelegate.java
index 042fb3b9..93998526 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/cache/ConfigurableCacheAwareContextLoaderDelegate.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/cache/ConfigurableCacheAwareContextLoaderDelegate.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/event/TestContextEventType.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/event/TestContextEventType.java
index 1529ef4a..6920ba45 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/event/TestContextEventType.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/event/TestContextEventType.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/support/CloseApplicationContextAfterTestClassTestExecutionListener.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/support/CloseApplicationContextAfterTestClassTestExecutionListener.java
index 4911e503..7e21053a 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/support/CloseApplicationContextAfterTestClassTestExecutionListener.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/support/CloseApplicationContextAfterTestClassTestExecutionListener.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTestsSupport.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTestsSupport.java
index d6214843..24b458a6 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTestsSupport.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTestsSupport.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java
index 5dd630c8..202a8f88 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/IntegrationTestsSupport.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/IntegrationTestsSupport.java
index 0d5d8686..98e70a96 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/IntegrationTestsSupport.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/IntegrationTestsSupport.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/SpringApplicationContextIntegrationTestsSupport.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/SpringApplicationContextIntegrationTestsSupport.java
index d6bea67b..e3fd3760 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/SpringApplicationContextIntegrationTestsSupport.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/SpringApplicationContextIntegrationTestsSupport.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/SpringBootApplicationIntegrationTestsSupport.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/SpringBootApplicationIntegrationTestsSupport.java
index 0f095c18..0c6898f3 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/SpringBootApplicationIntegrationTestsSupport.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/SpringBootApplicationIntegrationTestsSupport.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/annotation/EnableGemFireResourceCollector.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/annotation/EnableGemFireResourceCollector.java
index 7d798447..b5e49133 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/annotation/EnableGemFireResourceCollector.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/annotation/EnableGemFireResourceCollector.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/annotation/GemFireResourceCollectorConfiguration.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/annotation/GemFireResourceCollectorConfiguration.java
index 5192796c..3ea4deda 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/annotation/GemFireResourceCollectorConfiguration.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/annotation/GemFireResourceCollectorConfiguration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/config/ClientServerIntegrationTestsConfiguration.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/config/ClientServerIntegrationTestsConfiguration.java
index 7ff21fd3..291d61cb 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/config/ClientServerIntegrationTestsConfiguration.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/config/ClientServerIntegrationTestsConfiguration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/context/event/GemFireResourceCollectorApplicationListener.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/context/event/GemFireResourceCollectorApplicationListener.java
index c55c28e7..a7baca76 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/context/event/GemFireResourceCollectorApplicationListener.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/context/event/GemFireResourceCollectorApplicationListener.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/logging/slf4j/logback/TestAppender.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/logging/slf4j/logback/TestAppender.java
index adc35e01..b7272745 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/logging/slf4j/logback/TestAppender.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/logging/slf4j/logback/TestAppender.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/AsyncEventQueueMockObjects.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/AsyncEventQueueMockObjects.java
index 4c5e0080..60f57625 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/AsyncEventQueueMockObjects.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/AsyncEventQueueMockObjects.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/CacheMockObjects.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/CacheMockObjects.java
index 2cc56b72..d80e62c8 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/CacheMockObjects.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/CacheMockObjects.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/CacheServerMockObjects.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/CacheServerMockObjects.java
index 4feb4f26..4651f50d 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/CacheServerMockObjects.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/CacheServerMockObjects.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/DiskStoreMockObjects.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/DiskStoreMockObjects.java
index 9311c4e1..2e87cc4b 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/DiskStoreMockObjects.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/DiskStoreMockObjects.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/GatewayMockObjects.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/GatewayMockObjects.java
index a1858f7f..0cd996c6 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/GatewayMockObjects.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/GatewayMockObjects.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/GemFireMockObjectsSupport.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/GemFireMockObjectsSupport.java
index 5998f4e4..bfd4511b 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/GemFireMockObjectsSupport.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/GemFireMockObjectsSupport.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/IndexMockObjects.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/IndexMockObjects.java
index eb669b7b..ac513df0 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/IndexMockObjects.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/IndexMockObjects.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/MockObjectsSupport.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/MockObjectsSupport.java
index dc615312..c79eb25e 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/MockObjectsSupport.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/MockObjectsSupport.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/PoolMockObjects.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/PoolMockObjects.java
index b2735977..c2b4dfef 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/PoolMockObjects.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/PoolMockObjects.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/annotation/EnableGemFireMockObjects.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/annotation/EnableGemFireMockObjects.java
index c9a60062..a08691d3 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/annotation/EnableGemFireMockObjects.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/annotation/EnableGemFireMockObjects.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/annotation/GemFireMockObjectsConfiguration.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/annotation/GemFireMockObjectsConfiguration.java
index d389b3c4..21a0e7b6 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/annotation/GemFireMockObjectsConfiguration.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/annotation/GemFireMockObjectsConfiguration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/GemFireMockObjectsBeanPostProcessor.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/GemFireMockObjectsBeanPostProcessor.java
index a013ff58..25639815 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/GemFireMockObjectsBeanPostProcessor.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/GemFireMockObjectsBeanPostProcessor.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/RegionSpyingBeanPostProcessor.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/RegionSpyingBeanPostProcessor.java
index aa32b213..075539d7 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/RegionSpyingBeanPostProcessor.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/RegionSpyingBeanPostProcessor.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/context/GemFireMockObjectsApplicationContextInitializer.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/context/GemFireMockObjectsApplicationContextInitializer.java
index 06fee1b3..c26bc247 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/context/GemFireMockObjectsApplicationContextInitializer.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/context/GemFireMockObjectsApplicationContextInitializer.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/context/event/DestroyGemFireMockObjectsApplicationListener.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/context/event/DestroyGemFireMockObjectsApplicationListener.java
index 93302345..62a661e9 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/context/event/DestroyGemFireMockObjectsApplicationListener.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/context/event/DestroyGemFireMockObjectsApplicationListener.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/support/MockObjectInvocationException.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/support/MockObjectInvocationException.java
index bb621f36..5a48d06a 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/support/MockObjectInvocationException.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/support/MockObjectInvocationException.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/support/MockObjectsException.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/support/MockObjectsException.java
index 5af5cd10..86297e2f 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/support/MockObjectsException.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/support/MockObjectsException.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/test/context/DestroyGemFireMockObjectsTestExecutionListener.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/test/context/DestroyGemFireMockObjectsTestExecutionListener.java
index bfb8f250..8b1cf0b4 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/test/context/DestroyGemFireMockObjectsTestExecutionListener.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/mock/test/context/DestroyGemFireMockObjectsTestExecutionListener.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/objects/geode/cache/RegionDataInitializingPostProcessor.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/objects/geode/cache/RegionDataInitializingPostProcessor.java
index ebab4215..1b0c284d 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/objects/geode/cache/RegionDataInitializingPostProcessor.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/objects/geode/cache/RegionDataInitializingPostProcessor.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/objects/geode/security/TestSecurityManager.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/objects/geode/security/TestSecurityManager.java
index 2f087955..967b2e6d 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/objects/geode/security/TestSecurityManager.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/objects/geode/security/TestSecurityManager.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/JavaProcessRunner.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/JavaProcessRunner.java
index c5e1565d..acd0b839 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/JavaProcessRunner.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/JavaProcessRunner.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/PidNotFoundException.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/PidNotFoundException.java
index 1ec0d79a..45d996bc 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/PidNotFoundException.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/PidNotFoundException.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessConfiguration.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessConfiguration.java
index 29136b2c..1057e076 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessConfiguration.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessConfiguration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessExecutor.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessExecutor.java
index 13c5954e..862485f8 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessExecutor.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessExecutor.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessInputStreamListener.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessInputStreamListener.java
index 323c2476..56bd6c19 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessInputStreamListener.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessInputStreamListener.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessRunner.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessRunner.java
index e61b38df..af27bde0 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessRunner.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessRunner.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessUtils.java
index 157456a4..3f24d75a 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessUtils.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessWrapper.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessWrapper.java
index 8c9b25b5..207c34d9 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessWrapper.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessWrapper.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/AbstractSecurityManager.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/AbstractSecurityManager.java
index b9a7d55d..e6b7707b 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/AbstractSecurityManager.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/AbstractSecurityManager.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/DataSourceAdapter.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/DataSourceAdapter.java
index 82bb8db0..5514033f 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/DataSourceAdapter.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/DataSourceAdapter.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/IdentifierSequence.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/IdentifierSequence.java
index 99b172e1..633d0701 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/IdentifierSequence.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/IdentifierSequence.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/MapBuilder.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/MapBuilder.java
index 051b8936..4b7fbea9 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/MapBuilder.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/support/MapBuilder.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/unit/annotation/GemFireUnitTest.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/unit/annotation/GemFireUnitTest.java
index 6a3a236d..94b41121 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/unit/annotation/GemFireUnitTest.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/unit/annotation/GemFireUnitTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ByteArrayComparator.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ByteArrayComparator.java
index 609712ce..d8478979 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ByteArrayComparator.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ByteArrayComparator.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/FileSystemUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/FileSystemUtils.java
index b0a38eee..03707cb9 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/FileSystemUtils.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/FileSystemUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/FileUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/FileUtils.java
index f3f721d4..54579d1d 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/FileUtils.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/FileUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/IOUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/IOUtils.java
index 388791e7..a2737260 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/IOUtils.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/IOUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/IdentityComparator.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/IdentityComparator.java
index 25f2d344..4c884933 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/IdentityComparator.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/IdentityComparator.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/IdentityHashCodeComparator.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/IdentityHashCodeComparator.java
index 4fdcc224..0c426ada 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/IdentityHashCodeComparator.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/IdentityHashCodeComparator.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ObjectToByteArrayComparator.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ObjectToByteArrayComparator.java
index f3bcc682..f894a5ec 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ObjectToByteArrayComparator.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ObjectToByteArrayComparator.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ObjectUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ObjectUtils.java
index 82fb9e86..a3b7f6ac 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ObjectUtils.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ObjectUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ReflectionUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ReflectionUtils.java
index 3995237a..b3ab301f 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ReflectionUtils.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ReflectionUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/SocketUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/SocketUtils.java
index e96aa676..375872c4 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/SocketUtils.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/SocketUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/SpringUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/SpringUtils.java
index 3034d396..8b2fa821 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/SpringUtils.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/SpringUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/StackTraceUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/StackTraceUtils.java
index 89e04637..f02f1fee 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/StackTraceUtils.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/StackTraceUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ThreadUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ThreadUtils.java
index 14c4e17e..30901cc6 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ThreadUtils.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ThreadUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ThrowableUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ThrowableUtils.java
index e35f639c..68eab027 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ThrowableUtils.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ThrowableUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ZipUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ZipUtils.java
index e9695bd0..deb591aa 100644
--- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ZipUtils.java
+++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/util/ZipUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/MockClientCacheApplicationIntegrationTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/MockClientCacheApplicationIntegrationTests.java
index 73e0c217..f01bb563 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/MockClientCacheApplicationIntegrationTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/MockClientCacheApplicationIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/SpringTestContextIntegrationTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/SpringTestContextIntegrationTests.java
index da667672..24c5ade5 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/SpringTestContextIntegrationTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/SpringTestContextIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/CacheAndClientCacheFactorySpiesConfiguresMockCacheNameUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/CacheAndClientCacheFactorySpiesConfiguresMockCacheNameUnitTests.java
index 73ba1063..9c473823 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/CacheAndClientCacheFactorySpiesConfiguresMockCacheNameUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/CacheAndClientCacheFactorySpiesConfiguresMockCacheNameUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/CacheLifecycleListenerIntegrationTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/CacheLifecycleListenerIntegrationTests.java
index 66841c98..67781424 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/CacheLifecycleListenerIntegrationTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/CacheLifecycleListenerIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/ClientCacheFactorySpyEagerlyInitializesDefaultPoolUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/ClientCacheFactorySpyEagerlyInitializesDefaultPoolUnitTests.java
index ef2339e7..74cc2ef5 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/ClientCacheFactorySpyEagerlyInitializesDefaultPoolUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/ClientCacheFactorySpyEagerlyInitializesDefaultPoolUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/GemFireObjectCreationTriggeredByGemFirePropertyConfigurationIntegrationTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/GemFireObjectCreationTriggeredByGemFirePropertyConfigurationIntegrationTests.java
index c51f613e..25833a22 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/GemFireObjectCreationTriggeredByGemFirePropertyConfigurationIntegrationTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/GemFireObjectCreationTriggeredByGemFirePropertyConfigurationIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockCacheQueryServiceInteractionsUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockCacheQueryServiceInteractionsUnitTests.java
index 20066168..d78999b7 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockCacheQueryServiceInteractionsUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockCacheQueryServiceInteractionsUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockClientCacheDefaultPoolRegisteredWithPoolManagerUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockClientCacheDefaultPoolRegisteredWithPoolManagerUnitTests.java
index af64a997..7764c64d 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockClientCacheDefaultPoolRegisteredWithPoolManagerUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockClientCacheDefaultPoolRegisteredWithPoolManagerUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockPeerCacheApplicationXmlConfigurationIntegrationTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockPeerCacheApplicationXmlConfigurationIntegrationTests.java
index 0271560c..47099f0c 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockPeerCacheApplicationXmlConfigurationIntegrationTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockPeerCacheApplicationXmlConfigurationIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockRegionDataAccessOperationsAndEventsUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockRegionDataAccessOperationsAndEventsUnitTests.java
index ce50d520..db57ce64 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockRegionDataAccessOperationsAndEventsUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/MockRegionDataAccessOperationsAndEventsUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/event/TestContextEventTypeUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/event/TestContextEventTypeUnitTests.java
index fe27aa46..d5919ac6 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/event/TestContextEventTypeUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/extensions/spring/test/context/event/TestContextEventTypeUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTests.java
index 713c36c3..1d5bb7f6 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTestsSupportTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTestsSupportTests.java
index a676ade9..5331c316 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTestsSupportTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTestsSupportTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/SpringApplicationTerminatingIntegrationTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/SpringApplicationTerminatingIntegrationTests.java
index bdec9f0a..c4c3e416 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/SpringApplicationTerminatingIntegrationTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/SpringApplicationTerminatingIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/SpringEnvironmentPropertySourcesCleanupIntegrationTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/SpringEnvironmentPropertySourcesCleanupIntegrationTests.java
index a0b57e55..aea2adde 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/SpringEnvironmentPropertySourcesCleanupIntegrationTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/SpringEnvironmentPropertySourcesCleanupIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/SslConfigurationIntegrationTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/SslConfigurationIntegrationTests.java
index f128bd7a..7ad85a6a 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/SslConfigurationIntegrationTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/SslConfigurationIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/annotation/GemFireResourceCollectorConfigurationUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/annotation/GemFireResourceCollectorConfigurationUnitTests.java
index c2edb1a1..8da115f3 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/annotation/GemFireResourceCollectorConfigurationUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/annotation/GemFireResourceCollectorConfigurationUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/context/event/GemFireResourceCollectorApplicationListenerUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/context/event/GemFireResourceCollectorApplicationListenerUnitTests.java
index a98027b1..6ef4b7d5 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/context/event/GemFireResourceCollectorApplicationListenerUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/integration/context/event/GemFireResourceCollectorApplicationListenerUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/logging/slf4j/logback/TestAppenderUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/logging/slf4j/logback/TestAppenderUnitTests.java
index 51ce01f4..df5a8716 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/logging/slf4j/logback/TestAppenderUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/logging/slf4j/logback/TestAppenderUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/GemFireMockObjectsSupportIntegrationTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/GemFireMockObjectsSupportIntegrationTests.java
index 9b251d73..388aa0ab 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/GemFireMockObjectsSupportIntegrationTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/GemFireMockObjectsSupportIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/GemFireMockObjectsSupportUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/GemFireMockObjectsSupportUnitTests.java
index 4099594c..e80aa1f1 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/GemFireMockObjectsSupportUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/GemFireMockObjectsSupportUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/GemfireTemplateAndGemfireRepositoryUsingMockRegionOperationsIntegrationTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/GemfireTemplateAndGemfireRepositoryUsingMockRegionOperationsIntegrationTests.java
index 97a23df1..128f0c28 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/GemfireTemplateAndGemfireRepositoryUsingMockRegionOperationsIntegrationTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/GemfireTemplateAndGemfireRepositoryUsingMockRegionOperationsIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/annotation/GemFireMockObjectsConfigurationUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/annotation/GemFireMockObjectsConfigurationUnitTests.java
index b96ff1a5..5a234dd5 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/annotation/GemFireMockObjectsConfigurationUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/annotation/GemFireMockObjectsConfigurationUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/GemFireMockObjectsBeanPostProcessorUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/GemFireMockObjectsBeanPostProcessorUnitTests.java
index 6466f962..0c64559c 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/GemFireMockObjectsBeanPostProcessorUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/GemFireMockObjectsBeanPostProcessorUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/RegionSpyingBeanPostProcessorUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/RegionSpyingBeanPostProcessorUnitTests.java
index 21e7c3c0..40aca86b 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/RegionSpyingBeanPostProcessorUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/beans/factory/config/RegionSpyingBeanPostProcessorUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/context/GemFireMockObjectsApplicationContextInitializerUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/context/GemFireMockObjectsApplicationContextInitializerUnitTests.java
index 4dd4f1d3..8682efbf 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/context/GemFireMockObjectsApplicationContextInitializerUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/context/GemFireMockObjectsApplicationContextInitializerUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/context/event/DestroyGemFireMockObjectsApplicationListenerUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/context/event/DestroyGemFireMockObjectsApplicationListenerUnitTests.java
index 3830ca33..8df4a6c5 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/context/event/DestroyGemFireMockObjectsApplicationListenerUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/context/event/DestroyGemFireMockObjectsApplicationListenerUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/test/context/DestroyGemFireMockObjectsTestExecutionListenerUnitTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/test/context/DestroyGemFireMockObjectsTestExecutionListenerUnitTests.java
index 6ebecc1e..7cb206b4 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/test/context/DestroyGemFireMockObjectsTestExecutionListenerUnitTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/mock/test/context/DestroyGemFireMockObjectsTestExecutionListenerUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/objects/geode/cache/RegionDataInitializingPostProcessorIntegrationTests.java b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/objects/geode/cache/RegionDataInitializingPostProcessorIntegrationTests.java
index 0ce1f477..68cb6eec 100644
--- a/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/objects/geode/cache/RegionDataInitializingPostProcessorIntegrationTests.java
+++ b/spring-data-geode-test/src/test/java/org/springframework/data/gemfire/tests/objects/geode/cache/RegionDataInitializingPostProcessorIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2017-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.