1
0
mirror of https://gitee.com/dcren/initializr.git synced 2025-04-05 17:38:06 +08:00
Remove fast profile and milestone repository as they aren't used
in practice.
This commit is contained in:
Stephane Nicoll 2023-07-20 15:36:32 +02:00
parent faf4d9671c
commit ce0a2d6bf4

38
pom.xml
View File

@ -39,7 +39,6 @@
<properties> <properties>
<revision>0.20.1-SNAPSHOT</revision> <revision>0.20.1-SNAPSHOT</revision>
<disable.checks>false</disable.checks>
<git.url>https://github.com/spring-io/initializr</git.url> <git.url>https://github.com/spring-io/initializr</git.url>
<git.connection>scm:git:https://github.com/spring-io/initializr</git.connection> <git.connection>scm:git:https://github.com/spring-io/initializr</git.connection>
<git.developerConnection>scm:git:ssh://git@github.com/spring-io/initializr.git</git.developerConnection> <git.developerConnection>scm:git:ssh://git@github.com/spring-io/initializr.git</git.developerConnection>
@ -96,9 +95,6 @@
<executions> <executions>
<execution> <execution>
<phase>validate</phase> <phase>validate</phase>
<configuration>
<skip>${disable.checks}</skip>
</configuration>
<goals> <goals>
<goal>validate</goal> <goal>validate</goal>
</goals> </goals>
@ -131,7 +127,6 @@
<id>checkstyle-validation</id> <id>checkstyle-validation</id>
<phase>validate</phase> <phase>validate</phase>
<configuration> <configuration>
<skip>${disable.checks}</skip>
<configLocation>src/checkstyle/checkstyle.xml</configLocation> <configLocation>src/checkstyle/checkstyle.xml</configLocation>
<suppressionsLocation>src/checkstyle/checkstyle-suppressions.xml</suppressionsLocation> <suppressionsLocation>src/checkstyle/checkstyle-suppressions.xml</suppressionsLocation>
<includeTestSourceDirectory>true</includeTestSourceDirectory> <includeTestSourceDirectory>true</includeTestSourceDirectory>
@ -145,7 +140,6 @@
<id>nohttp-checkstyle-validation</id> <id>nohttp-checkstyle-validation</id>
<phase>validate</phase> <phase>validate</phase>
<configuration> <configuration>
<skip>${disable.checks}</skip>
<configLocation>src/checkstyle/nohttp-checkstyle.xml</configLocation> <configLocation>src/checkstyle/nohttp-checkstyle.xml</configLocation>
<suppressionsLocation>src/checkstyle/nohttp-checkstyle-suppressions.xml</suppressionsLocation> <suppressionsLocation>src/checkstyle/nohttp-checkstyle-suppressions.xml</suppressionsLocation>
<propertyExpansion>main.basedir=${main.basedir}</propertyExpansion> <propertyExpansion>main.basedir=${main.basedir}</propertyExpansion>
@ -217,38 +211,6 @@
</pluginManagement> </pluginManagement>
</build> </build>
</profile> </profile>
<profile>
<id>fast</id>
<activation>
<property>
<name>fast</name>
</property>
</activation>
<properties>
<disable.checks>true</disable.checks>
</properties>
</profile>
</profiles> </profiles>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project> </project>