Skip to content

Instantly share code, notes, and snippets.

@nkonev
Created May 17, 2017 00:08
Show Gist options
  • Select an option

  • Save nkonev/bd164e998adc8864076c4f304f851388 to your computer and use it in GitHub Desktop.

Select an option

Save nkonev/bd164e998adc8864076c4f304f851388 to your computer and use it in GitHub Desktop.
Non-conflict with spring boot maven plugin (removed unnecessary reporters which produses gemfire dependency error)
    <reporting>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-project-info-reports-plugin</artifactId>
                <reportSets>
                    <reportSet>
                        <configuration>
                            <skip>true</skip>
                        </configuration>
                    </reportSet>
                </reportSets>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-report-plugin</artifactId>
            </plugin>
        </plugins>
    </reporting>
mvn clean test
mvn -DskipTests site
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment