The BOM has:
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client-assembly</artifactId>
<version>1.29.1-SNAPSHOT</version><!-- {x-version-update:google-http-client-assembly:current} -->
</dependency>
However the default type of a dependency is jar, and no such jar artifact exists, only a pom. This causes problems when the dashboard tries to import this.
I need to investigate further but I think this should be
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client-assembly</artifactId>
<version>1.29.1-SNAPSHOT</version><!-- {x-version-update:google-http-client-assembly:current} -->
<type>pom</type>
</dependency>
The BOM has:
However the default type of a dependency is jar, and no such jar artifact exists, only a pom. This causes problems when the dashboard tries to import this.
I need to investigate further but I think this should be