This is an automated email from the ASF dual-hosted git repository. jinsongzhou pushed a commit to branch 0.7.x in repository https://gitbox.apache.org/repos/asf/amoro.git
commit 455f283b29c62c556c706a667f04ec0ca0da95d8 Author: ZhouJinsong <[email protected]> AuthorDate: Mon Jul 1 17:37:57 2024 +0800 [Improvement] Fix maven jar plugin configuration for apache release (#2975) Fix jar plugin configuration for apache release --- pom.xml | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/pom.xml b/pom.xml index e8cb82a35..39b5449df 100644 --- a/pom.xml +++ b/pom.xml @@ -68,6 +68,7 @@ <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.build.outputTimestamp>2024-06-27T08:00:00Z</project.build.outputTimestamp> <java.version>1.8</java.version> <root.dir>${project.basedir}</root.dir> <jacoco.flink.skip>false</jacoco.flink.skip> @@ -983,18 +984,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <version>${maven-jar-plugin-version}</version> - <executions> - <execution> - <goals> - <goal>test-jar</goal> - </goals> - </execution> - </executions> - </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> @@ -1188,6 +1177,23 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-remote-resources-plugin</artifactId> + <version>1.7.0</version> + <executions> + <execution> + <goals> + <goal>process</goal> + </goals> + <configuration> + <resourceBundles> + <resourceBundle>org.apache.apache.resources:apache-incubator-disclaimer-resource-bundle:1.5</resourceBundle> + </resourceBundles> + </configuration> + </execution> + </executions> + </plugin> </plugins> </pluginManagement>
