This is an automated email from the ASF dual-hosted git repository.

jinwoo pushed a commit to branch support/2.0
in repository https://gitbox.apache.org/repos/asf/geode-examples.git


The following commit(s) were added to refs/heads/support/2.0 by this push:
     new 40af5c4  GEODE-10467: Bump version to 2.0.0
40af5c4 is described below

commit 40af5c43396443fcb2c98e60e93f07c38e1c25f9
Author: Jinwoo Hwang <[email protected]>
AuthorDate: Sun Dec 7 21:16:47 2025 -0500

    GEODE-10467: Bump version to 2.0.0
    
    As part of the Geode Release Process, the geode-examples build number
    must be rolled forward as work begins on the next release
---
 gradle.properties                        | 2 +-
 gradle/release.gradle                    | 2 +-
 gradle/wrapper/gradle-wrapper.properties | 2 +-
 lucene/build.gradle                      | 2 +-
 luceneSpatial/build.gradle               | 6 +++---
 micrometerMetrics/build.gradle           | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/gradle.properties b/gradle.properties
index eabfcce..3995b02 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -18,7 +18,7 @@
 # Develop to use latest 1.15.1 artifacts until CI is rebuilt
 # GEODE-10436
 version = 2.0.0-build.0
-geodeVersion = 2.0.0
+geodeVersion = 2.0.+
 
 # release properties, set these on the command line to validate against
 # a release candidate
diff --git a/gradle/release.gradle b/gradle/release.gradle
index ef1f464..c88a1f7 100644
--- a/gradle/release.gradle
+++ b/gradle/release.gradle
@@ -63,7 +63,7 @@ gradle.taskGraph.whenReady { taskGraph ->
 
 distributions {
   src {
-    baseName = 'apache-geode-examples'
+    distributionBaseName = 'apache-geode-examples'
     version = version + '-src'
     contents {
       from (rootDir) {
diff --git a/gradle/wrapper/gradle-wrapper.properties 
b/gradle/wrapper/gradle-wrapper.properties
index f7186c7..f5799db 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
 distributionPath=wrapper/dists
 zipStoreBase=GRADLE_USER_HOME
 zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-5.5-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
diff --git a/lucene/build.gradle b/lucene/build.gradle
index d373d3a..19fe461 100644
--- a/lucene/build.gradle
+++ b/lucene/build.gradle
@@ -15,5 +15,5 @@
  * limitations under the License.
  */
 dependencies {
-    compile "org.apache.geode:geode-lucene:$geodeVersion"
+    implementation "org.apache.geode:geode-lucene:$geodeVersion"
 }
\ No newline at end of file
diff --git a/luceneSpatial/build.gradle b/luceneSpatial/build.gradle
index 133e947..310a7af 100644
--- a/luceneSpatial/build.gradle
+++ b/luceneSpatial/build.gradle
@@ -15,13 +15,13 @@
  * limitations under the License.
  */
 dependencies {
-    compile "org.apache.geode:geode-lucene:$geodeVersion"
-    compile "org.apache.lucene:lucene-spatial-extras:6.4.1"
+    implementation "org.apache.geode:geode-lucene:$geodeVersion"
+    implementation "org.apache.lucene:lucene-spatial-extras:6.4.1"
 }
 
 task copyDependencies(type:Copy) {
     into "$buildDir/libs"
-    from configurations['runtime']
+    from configurations.runtimeClasspath
 }
 
 build.dependsOn(copyDependencies)
diff --git a/micrometerMetrics/build.gradle b/micrometerMetrics/build.gradle
index 45ebcd4..96a82c3 100644
--- a/micrometerMetrics/build.gradle
+++ b/micrometerMetrics/build.gradle
@@ -21,7 +21,7 @@ configurations {
 
 dependencies {
     dependenciesToIncludeInEndpointJar 
"io.micrometer:micrometer-registry-prometheus:$micrometerVersion"
-    
configurations.compile.extendsFrom(configurations.dependenciesToIncludeInEndpointJar)
+    
configurations.implementation.extendsFrom(configurations.dependenciesToIncludeInEndpointJar)
 }
 
 jar {

Reply via email to