Commit 5424c566 authored by Andy Wilkinson's avatar Andy Wilkinson

Skip Animal Sniffer and Checkstyle plugins when building the starters

Closes gh-5681
parent 33cc5b40
...@@ -116,28 +116,29 @@ ...@@ -116,28 +116,29 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<!-- <plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>build-helper-maven-plugin</artifactId> <artifactId>maven-checkstyle-plugin</artifactId>
<inherited>false</inherited>
<executions> <executions>
<execution> <execution>
<id>attach-artifacts</id> <id>checkstyle-validation</id>
<phase>package</phase> <phase>validate</phase>
<goals> <goals>
<goal>attach-artifact</goal> <goal>check</goal>
</goals> </goals>
<configuration> <configuration>
<artifacts> <skip>true</skip>
<artifact>
<file>${project.build.directory}/spring-boot-starters-${project.version}-poms.zip</file>
<type>starter-poms</type>
</artifact>
</artifacts>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> --> </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>
</project> </project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment