This is an automated email from the ASF dual-hosted git repository.
delei pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fesod.git
The following commit(s) were added to refs/heads/main by this push:
new 24458f74 chore: remove central-publishing-maven-plugin (#755)
24458f74 is described below
commit 24458f74baaf06ca97f72ef6d7a9dc0331573580
Author: Shuxin Pan <[email protected]>
AuthorDate: Thu Dec 25 21:50:50 2025 +0800
chore: remove central-publishing-maven-plugin (#755)
---
pom.xml | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/pom.xml b/pom.xml
index 34f39033..ddd29f88 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,6 +24,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
+ <modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache</groupId>
@@ -31,7 +32,6 @@
<version>23</version>
</parent>
- <modelVersion>4.0.0</modelVersion>
<groupId>org.apache.fesod</groupId>
<artifactId>fesod-parent</artifactId>
@@ -425,11 +425,6 @@
<artifactId>flatten-maven-plugin</artifactId>
<version>1.2.7</version>
</plugin>
- <plugin>
- <groupId>org.sonatype.central</groupId>
- <artifactId>central-publishing-maven-plugin</artifactId>
- <version>0.4.0</version>
- </plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
@@ -609,19 +604,24 @@
</pom>
</configuration>
</plugin>
- <plugin>
- <groupId>org.sonatype.central</groupId>
- <artifactId>central-publishing-maven-plugin</artifactId>
- <extensions>true</extensions>
- <configuration>
- <publishingServerId>ossrh</publishingServerId>
- <tokenAuth>true</tokenAuth>
- </configuration>
- </plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>website/**</exclude>
+ <exclude>logo.svg</exclude>
+ <exclude>**/*.md</exclude>
+ <exclude>.git/**</exclude>
+ <exclude>.github/**</exclude>
+ <exclude>**/target/**</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</build>
<profiles>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]