Hi All,
I wonder if the inclusion of maven-deploy-plugin in the 1.7.1 release intended?
https://github.com/splunk/splunk-sdk-java/blob/master/pom.xml#L34-L39
We realized this because our security scanner picked that up in the deployment bundle. Right now we needed to explicitly exclude this in our pom, to prevent this from being included. i.e.
<!-- Splunk -->
<dependency>
<groupId>com.splunk</groupId>
<artifactId>splunk</artifactId>
<version>1.7.1</version>
<exclusions>
<exclusion>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
</exclusion>
</exclusions>
</dependency>
Thanks!