Browse Source

Skip Animal Sniffer and Checkstyle plugins when building the starters

Closes gh-5681
pull/5684/head
Andy Wilkinson 10 years ago
parent
commit
5424c5668b
  1. 29
      spring-boot-starters/pom.xml

29
spring-boot-starters/pom.xml

@ -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>

Loading…
Cancel
Save