This is an automated email from the ASF dual-hosted git repository. gaul pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jclouds.git
commit 7b5c2ae529bee0ed3528df9bc479edde46d9695f Author: gurkerl83 <[email protected]> AuthorDate: Mon Oct 26 01:22:49 2020 +0100 Lowering the GSON version Lowering the GSON version from 2.8.6 (latest) to 2.8.5, to make sure no side effects get introduced on a JDK level - for reference https://github.com/google/gson/issues/1601. Another feature is in its making to introduce a conditional build profile to support JDK 11 and above; here, a switch to the latest version of GSON gets provided. --- project/pom.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/project/pom.xml b/project/pom.xml index 4d00393..683eae1 100644 --- a/project/pom.xml +++ b/project/pom.xml @@ -226,12 +226,18 @@ <jdk.version>1.8</jdk.version> <maven.compile.deprecation>true</maven.compile.deprecation> <maven.site.url.base>gitsite:[email protected]/jclouds/jclouds-maven-site.git</maven.site.url.base> + <guava.version>22.0</guava.version> + <!-- TODO: this has to be addressed in another feature --> <guava.osgi.import>com.google.common.*;version="[22.0,30.0.0)"</guava.osgi.import> + <guice.version>4.2.3</guice.version> - <gson.version>2.8.6</gson.version> + <gson.version>2.8.5</gson.version> + <okhttp.version>2.2.0</okhttp.version> + <!-- TODO: this has to be addressed in another feature --> <okio.osgi.import>okio;version="[1.2.0,1.3)"</okio.osgi.import> + <surefire.version>2.17</surefire.version> <assertj-core.version>1.7.0</assertj-core.version> <assertj-guava.version>1.3.0</assertj-guava.version>
