This is an automated email from the ASF dual-hosted git repository. jbarrett pushed a commit to branch wip/oshi-multios-stats-module in repository https://gitbox.apache.org/repos/asf/geode.git
commit 29287169f5fee315ac8f90c9bcbb8f75adc5e101 Author: Jacob Barrett <[email protected]> AuthorDate: Mon Nov 15 21:06:22 2021 -0800 Update to OSHI 5.8.3. --- .../groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy | 1 + geode-core/build.gradle | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/buildSrc/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy b/buildSrc/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy index a12b318..815e5d2 100644 --- a/buildSrc/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy +++ b/buildSrc/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy @@ -174,6 +174,7 @@ class DependencyConstraints implements Plugin<Project> { api(group: 'redis.clients', name: 'jedis', version: '3.6.3') api(group: 'xerces', name: 'xercesImpl', version: '2.12.0') api(group: 'xml-apis', name: 'xml-apis', version: '1.4.01') + api(group: 'com.github.oshi', name: 'oshi-core', version: '5.8.3') } } diff --git a/geode-core/build.gradle b/geode-core/build.gradle index eaa2f54..e6389f5 100755 --- a/geode-core/build.gradle +++ b/geode-core/build.gradle @@ -313,7 +313,7 @@ dependencies { implementation('com.healthmarketscience.rmiio:rmiio') // OSHI OS system stats - implementation('com.github.oshi:oshi-core:5.7.4') + implementation('com.github.oshi:oshi-core') //Geode-common has annotations and other pieces used geode-core api(project(':geode-common'))
