Unverified Commit 34f8573b authored by Randall Hauch's avatar Randall Hauch Committed by GitHub
Browse files

Merge pull request #221 from rhauch/fix-maven-site

Set version of maven-site and maven-project-info-reports to ensure compatibility
parents 3dabd89f 78a3ca11
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -20,6 +20,9 @@
        <jest.version>2.0.0</jest.version>
        <licenses.version>3.2.4-SNAPSHOT</licenses.version>
        <confluent.maven.repo>http://packages.confluent.io/maven/</confluent.maven.repo>
        <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>
@@ -166,6 +169,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>

        <resources>