summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchaochaoc <[email protected]>2024-06-28 18:47:28 +0800
committerchaochaoc <[email protected]>2024-06-28 18:47:28 +0800
commitcf98121180d119117c8df3141c26d66ef43cf955 (patch)
tree63810e5303e3154c8f5a3c40f1004a8764906d06
parente5a5331464d6116538bb3e32bc94703c6ce83d0a (diff)
[GAL-602] feat: add docs and fix some bugs
-rw-r--r--pom.xml66
1 files changed, 33 insertions, 33 deletions
diff --git a/pom.xml b/pom.xml
index c922d1e..7d82d02 100644
--- a/pom.xml
+++ b/pom.xml
@@ -463,39 +463,6 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-enforcer-plugin</artifactId>
- <version>3.0.0-M3</version>
- <executions>
- <execution>
- <id>release-version-check</id>
- <goals>
- <goal>enforce</goal>
- </goals>
- <configuration>
- <rules>
- <requireReleaseVersion>
- <message>SNAPSHOT versions ${project.version} are not allowed.</message>
- </requireReleaseVersion>
- </rules>
- </configuration>
- </execution>
- <execution>
- <id>snapshot-version-check</id>
- <goals>
- <goal>enforce</goal>
- </goals>
- <configuration>
- <rules>
- <requireSnapshotVersion>
- <message>Non-SNAPSHOT versions ${project.version} are not allowed.</message>
- </requireSnapshotVersion>
- </rules>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
@@ -619,6 +586,39 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <version>3.0.0-M3</version>
+ <executions>
+ <execution>
+ <id>release-version-check</id>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ <configuration>
+ <rules>
+ <requireReleaseVersion>
+ <message>SNAPSHOT versions ${project.version} are not allowed.</message>
+ </requireReleaseVersion>
+ </rules>
+ </configuration>
+ </execution>
+ <execution>
+ <id>snapshot-version-check</id>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ <configuration>
+ <rules>
+ <requireSnapshotVersion>
+ <message>Non-SNAPSHOT versions ${project.version} are not allowed.</message>
+ </requireSnapshotVersion>
+ </rules>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.9.1</version>
<configuration>