Skip to content

Commit

Permalink
Merge pull request confluentinc#74 from rhauch/fix-maven-site
Browse files Browse the repository at this point in the history
Set version of maven-site and maven-project-info-reports to ensure compatibility
  • Loading branch information
rhauch authored Jul 6, 2018
2 parents 144e870 + 93bbeff commit a5603b8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@
<confluent.maven.repo>http://packages.confluent.io/maven/</confluent.maven.repo>
<licenses.version>3.2.4-SNAPSHOT</licenses.version>
<maven-assembly.version>2.6</maven-assembly.version>
<maven-site-plugin.version>3.7.1</maven-site-plugin.version>
<maven-project-info-reports-plugin.version>2.9</maven-project-info-reports-plugin.version>
<dependency.locations.enabled>false</dependency.locations.enabled>
</properties>

<repositories>
Expand Down Expand Up @@ -163,6 +166,23 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${maven-site-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${maven-project-info-reports-plugin.version}</version>
<configuration>
<!--
Disable dependency locations for latest maven-plugin-info-reports to eliminate blacklisting
warnings: "The repository url '...' is invalid - Repository '...' will be blacklisted."
-->
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit a5603b8

Please sign in to comment.