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 94f09325ba1442ed64fc0a0eba7fe8b336f621ce Author: gurkerl83 <[email protected]> AuthorDate: Mon Oct 26 01:33:49 2020 +0100 Remove scope declaration from deps management The default scope of imports is "compile." There is no reason to add this declaration to the GSON import declaration. Also, scope declarations are required to be defined in the main dependency declaration section, not in dependency management, where dependency information gets managed, which is valid across all of its children, e.g., version numbers. --- project/pom.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/project/pom.xml b/project/pom.xml index 683eae1..44f1a3f 100644 --- a/project/pom.xml +++ b/project/pom.xml @@ -269,7 +269,6 @@ <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> - <scope>compile</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId>
