Skip to content

Commit 34f8573

Browse files
authored
Merge pull request #221 from rhauch/fix-maven-site
Set version of maven-site and maven-project-info-reports to ensure compatibility
2 parents 3dabd89 + 78a3ca1 commit 34f8573

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
<jest.version>2.0.0</jest.version>
2121
<licenses.version>3.2.4-SNAPSHOT</licenses.version>
2222
<confluent.maven.repo>http://packages.confluent.io/maven/</confluent.maven.repo>
23+
<maven-site-plugin.version>3.7.1</maven-site-plugin.version>
24+
<maven-project-info-reports-plugin.version>2.9</maven-project-info-reports-plugin.version>
25+
<dependency.locations.enabled>false</dependency.locations.enabled>
2326
</properties>
2427

2528
<repositories>
@@ -166,6 +169,23 @@
166169
</execution>
167170
</executions>
168171
</plugin>
172+
<plugin>
173+
<groupId>org.apache.maven.plugins</groupId>
174+
<artifactId>maven-site-plugin</artifactId>
175+
<version>${maven-site-plugin.version}</version>
176+
</plugin>
177+
<plugin>
178+
<groupId>org.apache.maven.plugins</groupId>
179+
<artifactId>maven-project-info-reports-plugin</artifactId>
180+
<version>${maven-project-info-reports-plugin.version}</version>
181+
<configuration>
182+
<!--
183+
Disable dependency locations for latest maven-plugin-info-reports to eliminate blacklisting
184+
warnings: "The repository url '...' is invalid - Repository '...' will be blacklisted."
185+
-->
186+
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
187+
</configuration>
188+
</plugin>
169189
</plugins>
170190

171191
<resources>

0 commit comments

Comments
 (0)