[geode] branch develop updated: GEODE-10299: update examples for creating dynamic regions (#7681)

2022-05-11 Thread dbarnes
This is an automated email from the ASF dual-hosted git repository.

dbarnes pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
 new 485411b5f6 GEODE-10299: update examples for creating dynamic regions 
(#7681)
485411b5f6 is described below

commit 485411b5f6b927c6a7a8d016084ab6e49260bfb5
Author: Max Hufnagel 
AuthorDate: Wed May 11 16:17:52 2022 -0700

GEODE-10299: update examples for creating dynamic regions (#7681)
---
 .../dynamic_region_creation.html.md.erb| 133 -
 1 file changed, 50 insertions(+), 83 deletions(-)

diff --git 
a/geode-docs/developing/region_options/dynamic_region_creation.html.md.erb 
b/geode-docs/developing/region_options/dynamic_region_creation.html.md.erb
index fd88b7259c..54a54130ca 100644
--- a/geode-docs/developing/region_options/dynamic_region_creation.html.md.erb
+++ b/geode-docs/developing/region_options/dynamic_region_creation.html.md.erb
@@ -38,58 +38,49 @@ In the following example, the `CreateRegionFunction` class 
defines a function in
 #CreateRegionFunction.java
 
 import org.apache.geode.cache.Cache;
-import org.apache.geode.cache.CacheFactory;
 import org.apache.geode.cache.DataPolicy;
 import org.apache.geode.cache.Declarable;
 import org.apache.geode.cache.Region;
-import org.apache.geode.cache.RegionAttributes;
 import org.apache.geode.cache.RegionFactory;
 import org.apache.geode.cache.Scope;
 
+import org.apache.geode.cache.configuration.RegionConfig;
+
 import org.apache.geode.cache.execute.Function;
 import org.apache.geode.cache.execute.FunctionContext;
 
 import java.util.Properties;
 
-public class CreateRegionFunction implements Function, Declarable {
+public class CreateRegionFunction implements Function, 
Declarable {
 
-  private final Cache cache;
-  
-  private final Region regionAttributesMetadataRegion;
+  private Region regionAttributesMetadataRegion;
 
   private static final String REGION_ATTRIBUTES_METADATA_REGION = 
- "_regionAttributesMetadata";
+ 
"_regionAttributesMetadata";
   
-  public enum Status {SUCCESSFUL, UNSUCCESSFUL, ALREADY_EXISTS};
-
-  public CreateRegionFunction() {
-this.cache = CacheFactory.getAnyInstance();
-this.regionAttributesMetadataRegion = 
createRegionAttributesMetadataRegion();
-  }
+  public enum Status {SUCCESSFUL, UNSUCCESSFUL, ALREADY_EXISTS}
 
-  public void execute(FunctionContext context) {
-Object[] arguments = (Object[]) context.getArguments();
-String regionName = (String) arguments[0];
-RegionAttributes attributes = (RegionAttributes) arguments[1];
+  public void execute(FunctionContext context) {
+RegionConfig regionConfig = context.getArguments();
 
 // Create or retrieve region
-Status status = createOrRetrieveRegion(regionName, attributes);
+Status status = createOrRetrieveRegion(context.getCache(), regionConfig);
 
 // Return status
 context.getResultSender().lastResult(status);
   }
-  
-  private Status createOrRetrieveRegion(String regionName, 
-RegionAttributes attributes) {
+
+  private Status createOrRetrieveRegion(Cache cache, RegionConfig 
regionConfig) {
 Status status = Status.SUCCESSFUL;
-Region region = this.cache.getRegion(regionName);
+String regionName = regionConfig.getName();
+Region region = cache.getRegion(regionName);
 if (region == null) {
-  // Put the attributes into the metadata region. The afterCreate call will
-  // actually create the region.
-  this.regionAttributesMetadataRegion.put(regionName, attributes);
+  // Put the attributes into the metadata region. The afterCreate call
+  // creates the region.
+  this.regionAttributesMetadataRegion.put(regionName, regionConfig);
   
   // Retrieve the region after creating it
-  region = this.cache.getRegion(regionName);
+  region = cache.getRegion(regionName);
   if (region == null) {
 status = Status.UNSUCCESSFUL;
   }
@@ -99,38 +90,25 @@ public class CreateRegionFunction implements Function, 
Declarable {
 return status;
   }
   
-  private Region 
-  createRegionAttributesMetadataRegion() {
-Region metaRegion = 
- 
this.cache.getRegion(REGION_ATTRIBUTES_METADATA_REGION);
-if (metaRegion == null) {
-  RegionFactory factory =
-  this.cache.createRegionFactory();
+  private void initializeRegionAttributesMetadataRegion(Cache cache) {
+this.regionAttributesMetadataRegion = 
+  
cache.getRegion(REGION_ATTRIBUTES_METADATA_REGION);
+if (this.regionAttributesMetadataRegion == null) {
+  RegionFactory factory = 
cache.createRegionFactory();
   factory.setDataPolicy(DataPolicy.REPLICATE);
   factory.setScope(Scope.DISTRIBUTED_A

[geode] branch support/1.15 updated: GEODE-10282: Migrate from springfox to springdoc (#7659)

2022-05-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.15
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/support/1.15 by this push:
 new 41305de140 GEODE-10282: Migrate from springfox to springdoc (#7659)
41305de140 is described below

commit 41305de1405c2125142e6b337c3f1704f736fca4
Author: Patrick Johnson 
AuthorDate: Tue May 10 11:25:20 2022 -0700

GEODE-10282: Migrate from springfox to springdoc (#7659)

springfox swagger is no longer maintained, so springdoc is the best choice 
going forward.

(cherry picked from commit 9fbd35a8f9816d4c9baf98d7fec38c5850686177)
---
 .../src/test/resources/expected-pom.xml|  15 +--
 .../gradle/plugins/DependencyConstraints.groovy|   7 +-
 dev-tools/dependencies/bump.sh |   2 +-
 geode-assembly/build.gradle|   8 +-
 .../management/JQFilterVerificationDUnitTest.java  |  20 ++--
 ...aggerManagementVerificationIntegrationTest.java |   2 +-
 .../DevRestSwaggerVerificationIntegrationTest.java |   2 +-
 .../integrationTest/resources/assembly_content.txt |   2 +-
 .../integrationTest/resources/expected_jars.txt|  33 +++---
 .../resources/gfsh_dependency_classpath.txt|   2 +-
 geode-core/build.gradle|   2 +-
 geode-core/src/test/resources/expected-pom.xml |   2 +-
 .../geode-deployment-legacy/build.gradle   |   4 +-
 geode-gfsh/build.gradle|   3 +-
 geode-gfsh/src/test/resources/expected-pom.xml |   2 +-
 geode-management/build.gradle  |   4 +-
 .../geode/management/configuration/Deployment.java |   8 +-
 geode-server-all/build.gradle  |   2 +-
 .../resources/dependency_classpath.txt |   2 +-
 .../src/test/resources/expected-pom.xml|   2 +-
 geode-web-api/build.gradle |   9 +-
 .../web/controllers/CommonCrudController.java  |  78 ++---
 .../web/controllers/FunctionAccessController.java  |  38 +++
 .../web/controllers/PdxBasedCrudController.java| 122 ++---
 .../web/controllers/QueryAccessController.java |  93 
 .../web/security/RestSecurityConfiguration.java|   6 +-
 .../internal/web/swagger/config/SwaggerConfig.java |  54 -
 .../src/main/resources/swagger.properties  |   3 +-
 .../src/main/webapp/WEB-INF/geode-servlet.xml  |   1 +
 geode-web-management/build.gradle  |   8 +-
 .../DeploymentManagementController.java|  23 ++--
 .../rest/controllers/DiskStoreController.java  |  24 ++--
 .../rest/controllers/DocLinksController.java   |   4 +-
 .../controllers/GatewayManagementController.java   |  18 +--
 .../controllers/MemberManagementController.java|  10 +-
 .../rest/controllers/PdxManagementController.java  |  24 ++--
 .../rest/controllers/PingManagementController.java |   5 +-
 .../controllers/RebalanceOperationController.java  |   8 +-
 .../controllers/RegionManagementController.java|  47 
 .../RestoreRedundancyOperationController.java  |   8 +-
 .../rest/security/RestSecurityConfiguration.java   |   6 +-
 .../internal/rest/swagger/SwaggerConfig.java   |  70 ++--
 .../main/resources/swagger-management.properties   |   3 +-
 .../src/main/webapp/WEB-INF/management-servlet.xml |   1 +
 44 files changed, 379 insertions(+), 408 deletions(-)

diff --git a/boms/geode-all-bom/src/test/resources/expected-pom.xml 
b/boms/geode-all-bom/src/test/resources/expected-pom.xml
index 6007d1d0ed..cbe85e3ec8 100644
--- a/boms/geode-all-bom/src/test/resources/expected-pom.xml
+++ b/boms/geode-all-bom/src/test/resources/expected-pom.xml
@@ -198,9 +198,9 @@
 1.8.5
   
   
-io.swagger
+io.swagger.core.v3
 swagger-annotations
-1.6.6
+2.2.0
   
   
 it.unimi.dsi
@@ -513,14 +513,9 @@
 1.0
   
   
-io.springfox
-springfox-swagger-ui
-2.9.2
-  
-  
-io.springfox
-springfox-swagger2
-2.9.2
+org.springdoc
+springdoc-openapi-ui
+1.6.8
   
   
 mx4j
diff --git 
a/build-tools/geode-dependency-management/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy
 
b/build-tools/geode-dependency-management/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy
index fdd38a564c..9b097f2b71 100644
--- 
a/build-tools/geode-dependency-management/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy
+++ 
b/build-tools/geode-dependency-management/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy
@@ -119,7 +119,7 @@ class DependencyConstraints {
 api(group: 'io.github.resilience4j', name: 'resilience4j-retry', 
version: '1.7.1

[geode] branch develop updated: GEODE-10271: ConnectionProxyJUnitTest cleanup (#7652)

2022-05-11 Thread jinmeiliao
This is an automated email from the ASF dual-hosted git repository.

jinmeiliao pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
 new e25fba2a13 GEODE-10271: ConnectionProxyJUnitTest cleanup (#7652)
e25fba2a13 is described below

commit e25fba2a13f15e77af6aafabbe6921b919b95d19
Author: Jinmei Liao 
AuthorDate: Wed May 11 10:48:23 2022 -0700

GEODE-10271: ConnectionProxyJUnitTest cleanup (#7652)
---
 .../sockets/ConnectionProxyIntegrationTest.java| 395 +++
 .../tier/sockets/ConnectionProxyJUnitTest.java | 771 -
 2 files changed, 395 insertions(+), 771 deletions(-)

diff --git 
a/geode-core/src/integrationTest/java/org/apache/geode/internal/cache/tier/sockets/ConnectionProxyIntegrationTest.java
 
b/geode-core/src/integrationTest/java/org/apache/geode/internal/cache/tier/sockets/ConnectionProxyIntegrationTest.java
new file mode 100644
index 00..212c983bfb
--- /dev/null
+++ 
b/geode-core/src/integrationTest/java/org/apache/geode/internal/cache/tier/sockets/ConnectionProxyIntegrationTest.java
@@ -0,0 +1,395 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more 
contributor license
+ * agreements. See the NOTICE file distributed with this work for additional 
information regarding
+ * copyright ownership. The ASF licenses this file to You under the Apache 
License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance with the 
License. You may obtain a
+ * copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software 
distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 
KIND, either express
+ * or implied. See the License for the specific language governing permissions 
and limitations under
+ * the License.
+ */
+/*
+ * Created on Feb 3, 2006
+ *
+ */
+package org.apache.geode.internal.cache.tier.sockets;
+
+import static org.apache.geode.cache.client.PoolManager.createFactory;
+import static 
org.apache.geode.internal.AvailablePortHelper.getRandomAvailableTCPPort;
+import static org.apache.geode.test.awaitility.GeodeAwaitility.await;
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+
+import java.io.IOException;
+import java.time.Duration;
+import java.util.Map;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+
+import org.apache.geode.cache.Cache;
+import org.apache.geode.cache.client.NoAvailableServersException;
+import org.apache.geode.cache.client.PoolFactory;
+import org.apache.geode.cache.client.PoolManager;
+import org.apache.geode.cache.client.internal.PoolImpl;
+import 
org.apache.geode.cache.client.internal.QueueStateImpl.SequenceIdAndExpirationObject;
+import org.apache.geode.cache.server.CacheServer;
+import org.apache.geode.distributed.DistributedSystem;
+import org.apache.geode.internal.cache.EventID;
+import org.apache.geode.internal.cache.ha.ThreadIdentifier;
+import org.apache.geode.test.junit.categories.ClientSubscriptionTest;
+import org.apache.geode.test.junit.rules.ServerStarterRule;
+
+/**
+ * Tests the functionality of operations of AbstractConnectionProxy & its 
derived classes.
+ */
+@Category({ClientSubscriptionTest.class})
+public class ConnectionProxyIntegrationTest {
+  DistributedSystem system;
+  Cache cache;
+  PoolImpl proxy = null;
+  SequenceIdAndExpirationObject seo = null;
+  CacheServer server = null;
+
+  final Duration timeoutToVerifyExpiry = Duration.ofSeconds(30);
+  final Duration timeoutToVerifyAckSend = Duration.ofSeconds(30);
+
+  @Rule
+  public ServerStarterRule serverStarter =
+  new ServerStarterRule().withNoCacheServer().withAutoStart();
+
+  @Before
+  public void setUp() throws Exception {
+cache = serverStarter.getCache();
+system = cache.getDistributedSystem();
+  }
+
+  @After
+  public void after() throws Exception {
+if (server != null) {
+  server.stop();
+}
+  }
+
+  @Test
+  public void connectedServerCount() throws Exception {
+int port3 = getRandomAvailableTCPPort();
+
+PoolFactory poolFactory = PoolManager.createFactory();
+poolFactory.addServer("localhost", port3);
+poolFactory.setSubscriptionEnabled(false);
+poolFactory.setReadTimeout(2000);
+poolFactory.setMinConnections(1);
+poolFactory.setSocketBufferSize(32768);
+poolFactory.setRetryAttempts(1);
+poolFactory.setPingInterval(500);
+proxy = (PoolImpl) poolFactory.create("clientPool");
+
+assertThatThrownBy(() -> proxy.acquireConnection())
+.isInstanceOf(NoAvailableServersException.class);
+
+assertThat(proxy.getConnectedServerCount()).isEqualTo(0);
+addCacheServer(port3, 15

[geode] branch support/1.15 updated: GEODE-10283: Remove problematic buildSrc project, replacing with includeBuild projects (#7600)

2022-05-11 Thread rhoughton
This is an automated email from the ASF dual-hosted git repository.

rhoughton pushed a commit to branch support/1.15
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/support/1.15 by this push:
 new 3cf68a1298 GEODE-10283: Remove problematic buildSrc project, replacing 
with includeBuild projects (#7600)
3cf68a1298 is described below

commit 3cf68a12981640b75b9cc3f5515121315eae27e1
Author: Robert Houghton 
AuthorDate: Wed May 11 10:30:48 2022 -0700

GEODE-10283: Remove problematic buildSrc project, replacing with 
includeBuild projects (#7600)

* Extract DependencyConstraints plugin from buildSrc
* Extract japicmp plugin customization from buildSrc
* Test isolation from buildSrc
* Disable jacoco on all test facets by default

(cherry picked from commit 509c0c6c916a047a8440475fd65b706ce41e2f2b)
---
 boms/geode-all-bom/build.gradle|  5 +-
 boms/geode-client-bom/build.gradle |  8 ++-
 .../geode-annotation-processor}/build.gradle   | 21 ---
 .../geode-annotation-processor/settings.gradle |  5 +-
 .../javac/EnsureCorrectRunsWithProcessor.java  |  0
 .../services/javax.annotation.processing.Processor |  0
 .../org/apache/geode/javac/CompilerException.java  |  0
 .../org/apache/geode/javac/SimpleClassFile.java|  0
 .../org/apache/geode/javac/SimpleFileManager.java  |  0
 .../org/apache/geode/javac/SimpleSourceFile.java   |  0
 .../geode/javac/TestAnnotationProcessor.java   |  0
 .../java/org/apache/geode/javac/TestCompiler.java  |  0
 .../geode-build-tools}/build.gradle| 40 ++--
 .../geode-build-tools/settings.gradle  |  5 +-
 .../geode/gradle/plugins/BuildToolsPlugin.groovy   | 10 +--
 .../geode/gradle/plugins}/PasswordDialog.groovy|  4 ++
 .../gradle/plugins/TestPropertiesWriter.groovy | 33 +-
 .../geode-dependency-management}/build.gradle  | 24 +++
 .../geode-dependency-management/settings.gradle|  5 +-
 .../gradle/plugins/DependencyConstraints.groovy|  8 +--
 .../plugins/DependencyConstraintsPlugin.groovy | 13 ++--
 .../gradle/plugins/DependencySetHandler.groovy |  0
 .../geode-japicmp}/build.gradle| 26 
 .../geode-japicmp/settings.gradle  |  5 +-
 .../japicmp/AllowMajorBreakingChanges.groovy   |  0
 .../gradle/japicmp/GeodeApiRegressionRule.groovy   |  0
 .../gradle/japicmp/GeodeSpiRegressionRule.groovy   |  0
 .../geode/gradle/japicmp/JapicmpPlugin.groovy  | 15 +++--
 .../gradle/japicmp/ParentIsExperimental.groovy |  0
 .../src/main/resources/japicmp_exceptions.json |  0
 .../geode-repeat-test}/build.gradle| 39 ++--
 .../geode-repeat-test/settings.gradle  |  5 +-
 .../geode/gradle/testing/repeat/RepeatTest.groovy  | 73 +-
 .../gradle/testing/repeat/RepeatTestPlugin.groovy  | 13 ++--
 .../ExecutionTrackingTestClassProcessor.java   |  0
 .../ExecutionTrackingTestResultProcessor.java  |  0
 .../gradle/testing/repeat/RepeatTestExecuter.java  |  0
 .../gradle/testing/repeat/RepeatTestTest.groovy| 31 -
 .../geode-testing-isolation}/build.gradle  | 34 +++---
 .../geode-testing-isolation/settings.gradle|  5 +-
 .../apache/geode/gradle/testing/Executers.groovy   |  0
 .../org/apache/geode/gradle/testing/Workers.groovy |  1 +
 .../testing/isolation/IsolatedTestPlugin.groovy|  9 ++-
 .../testing/isolation/CompletableProcess.java  |  0
 .../geode/gradle/testing/isolation/PortRange.java  |  0
 .../gradle/testing/isolation/PortRangeContext.java |  0
 .../isolation/PortRangeProcessLauncher.java|  0
 .../isolation/WorkingDirectoryIsolator.java|  0
 .../testing/process/AdjustableProcessLauncher.java |  0
 .../process/LauncherProxyWorkerProcessBuilder.java |  0
 .../process/LauncherProxyWorkerProcessFactory.java |  0
 .../gradle/testing/process/ProcessLauncher.java|  0
 .../geode/gradle/testing/process/Reflection.java   |  0
 .../geode/gradle/test/isolation/PortRangeTest.java | 17 +++--
 .../isolation/WorkingDirectoryIsolatorTest.java|  9 ++-
 {buildSrc => build-tools/scripts}/build.gradle | 36 +++
 .../scripts/settings.gradle| 30 +
 .../scripts/src/main/groovy}/check-pom.gradle  | 15 ++---
 .../scripts/src/main/groovy}/code-analysis.gradle  | 71 ++---
 .../src/main/groovy}/dependency-resolution.gradle  |  0
 .../src/main/groovy/geode-japicmp-task.gradle  |  7 +--
 .../scripts/src/main/groovy/geode-java.gradle  | 13 ++--
 .../scripts/src/main/groovy/geode-pmd.gradle   |  6 +-
 .../src/main/groovy/geode-publish-artifacts.gradle |  0
 .../src/main/groovy/geode-publish-common.gradle| 11 ++--
 .../src/main/groovy/geode-publish-java.gradle  |  7 ++-
 .../src/main/groovy/geode-publish-war.gradle   |  6 +-
 .../scripts/src/main/gro

[geode] branch develop updated (5843feeb38 -> 509c0c6c91)

2022-05-11 Thread rhoughton
This is an automated email from the ASF dual-hosted git repository.

rhoughton pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


from 5843feeb38 GEODE-10288: Fix property assignment syntax (#7678)
 add 509c0c6c91 GEODE-10283: Remove problematic buildSrc project, replacing 
with includeBuild projects (#7600)

No new revisions were added by this update.

Summary of changes:
 boms/geode-all-bom/build.gradle|  5 +-
 boms/geode-client-bom/build.gradle |  8 ++-
 .../geode-annotation-processor}/build.gradle   | 21 ---
 .../geode-annotation-processor/settings.gradle |  5 +-
 .../javac/EnsureCorrectRunsWithProcessor.java  |  0
 .../services/javax.annotation.processing.Processor |  0
 .../org/apache/geode/javac/CompilerException.java  |  0
 .../org/apache/geode/javac/SimpleClassFile.java|  0
 .../org/apache/geode/javac/SimpleFileManager.java  |  0
 .../org/apache/geode/javac/SimpleSourceFile.java   |  0
 .../geode/javac/TestAnnotationProcessor.java   |  0
 .../java/org/apache/geode/javac/TestCompiler.java  |  0
 .../geode-build-tools}/build.gradle| 40 ++--
 .../geode-build-tools/settings.gradle  |  5 +-
 .../geode/gradle/plugins/BuildToolsPlugin.groovy   | 10 +--
 .../geode/gradle/plugins}/PasswordDialog.groovy|  4 ++
 .../gradle/plugins/TestPropertiesWriter.groovy | 33 +-
 .../geode-dependency-management}/build.gradle  | 24 +++
 .../geode-dependency-management/settings.gradle|  5 +-
 .../gradle/plugins/DependencyConstraints.groovy|  8 +--
 .../plugins/DependencyConstraintsPlugin.groovy | 13 ++--
 .../gradle/plugins/DependencySetHandler.groovy |  0
 .../geode-japicmp}/build.gradle| 26 
 .../geode-japicmp/settings.gradle  |  5 +-
 .../japicmp/AllowMajorBreakingChanges.groovy   |  0
 .../gradle/japicmp/GeodeApiRegressionRule.groovy   |  0
 .../gradle/japicmp/GeodeSpiRegressionRule.groovy   |  0
 .../geode/gradle/japicmp/JapicmpPlugin.groovy  | 15 +++--
 .../gradle/japicmp/ParentIsExperimental.groovy |  0
 .../src/main/resources/japicmp_exceptions.json |  0
 .../geode-repeat-test}/build.gradle| 39 ++--
 .../geode-repeat-test/settings.gradle  |  5 +-
 .../geode/gradle/testing/repeat/RepeatTest.groovy  | 73 +-
 .../gradle/testing/repeat/RepeatTestPlugin.groovy  | 13 ++--
 .../ExecutionTrackingTestClassProcessor.java   |  0
 .../ExecutionTrackingTestResultProcessor.java  |  0
 .../gradle/testing/repeat/RepeatTestExecuter.java  |  0
 .../gradle/testing/repeat/RepeatTestTest.groovy| 31 -
 .../geode-testing-isolation}/build.gradle  | 34 +++---
 .../geode-testing-isolation/settings.gradle|  5 +-
 .../apache/geode/gradle/testing/Executers.groovy   |  0
 .../org/apache/geode/gradle/testing/Workers.groovy |  1 +
 .../testing/isolation/IsolatedTestPlugin.groovy|  9 ++-
 .../testing/isolation/CompletableProcess.java  |  0
 .../geode/gradle/testing/isolation/PortRange.java  |  0
 .../gradle/testing/isolation/PortRangeContext.java |  0
 .../isolation/PortRangeProcessLauncher.java|  0
 .../isolation/WorkingDirectoryIsolator.java|  0
 .../testing/process/AdjustableProcessLauncher.java |  0
 .../process/LauncherProxyWorkerProcessBuilder.java |  0
 .../process/LauncherProxyWorkerProcessFactory.java |  0
 .../gradle/testing/process/ProcessLauncher.java|  0
 .../geode/gradle/testing/process/Reflection.java   |  0
 .../geode/gradle/test/isolation/PortRangeTest.java | 17 +++--
 .../isolation/WorkingDirectoryIsolatorTest.java|  9 ++-
 {buildSrc => build-tools/scripts}/build.gradle | 36 +++
 .../scripts/settings.gradle| 30 +
 .../scripts/src/main/groovy}/check-pom.gradle  | 15 ++---
 .../scripts/src/main/groovy}/code-analysis.gradle  | 71 ++---
 .../src/main/groovy}/dependency-resolution.gradle  |  0
 .../src/main/groovy/geode-japicmp-task.gradle  |  7 +--
 .../scripts/src/main/groovy/geode-java.gradle  | 13 ++--
 .../scripts/src/main/groovy/geode-pmd.gradle   |  6 +-
 .../src/main/groovy/geode-publish-artifacts.gradle |  0
 .../src/main/groovy/geode-publish-common.gradle| 11 ++--
 .../src/main/groovy/geode-publish-java.gradle  |  7 ++-
 .../src/main/groovy/geode-publish-war.gradle   |  6 +-
 .../scripts/src/main/groovy/geode-rat.gradle   |  5 +-
 .../scripts/src/main/groovy/geode-sonar.gradle |  4 +-
 .../scripts/src/main/groovy/geode-test.gradle  | 27 
 .../scripts/src/main/groovy}/ide.gradle|  6 +-
 .../scripts/src/main/groovy}/javaVersions.gradle   |  6 +-
 .../scripts/src/main/groovy}/jmh.gradle|  6 +-
 .../scripts/src/main/groovy}/lint.gradle   |  4 +-
 .../src/main/groovy}/multi-process-test.gradle |  4 +-
 .../platform-sub

[geode] branch develop updated: GEODE-10288: Fix property assignment syntax (#7678)

2022-05-11 Thread dhemery
This is an automated email from the ASF dual-hosted git repository.

dhemery pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
 new 5843feeb38 GEODE-10288: Fix property assignment syntax (#7678)
5843feeb38 is described below

commit 5843feeb386e3b9cf3d6cc02e192b6af7f483385
Author: Dale Emery 
AuthorDate: Wed May 11 08:48:30 2022 -0700

GEODE-10288: Fix property assignment syntax (#7678)
---
 ci/scripts/execute_tests.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ci/scripts/execute_tests.sh b/ci/scripts/execute_tests.sh
index eb1c606235..8e66a06084 100755
--- a/ci/scripts/execute_tests.sh
+++ b/ci/scripts/execute_tests.sh
@@ -104,9 +104,9 @@ GRADLE_ARGS=" \
 -PcompileJVMVer=${JAVA_BUILD_VERSION} \
 -PtestJVM=${JAVA_TEST_PATH} \
 -PtestJVMVer=${JAVA_TEST_VERSION} \
--PtestJava8Home${TEST_JAVA_8_HOME} \
--PtestJava11Home${TEST_JAVA_11_HOME} \
--PtestJava17Home${TEST_JAVA_17_HOME} \
+-PtestJava8Home=${TEST_JAVA_8_HOME} \
+-PtestJava11Home=${TEST_JAVA_11_HOME} \
+-PtestJava17Home=${TEST_JAVA_17_HOME} \
 ${PARALLEL_DUNIT} \
 ${DUNIT_PARALLEL_FORKS} \
 ${DEFAULT_GRADLE_TASK_OPTIONS} \