Skip to content

Commit

Permalink
fix pom flattern issue
Browse files Browse the repository at this point in the history
Signed-off-by: chenxu <[email protected]>
  • Loading branch information
dmetasoul01 committed Mar 29, 2024
1 parent e053387 commit 0925fd1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 57 deletions.
14 changes: 2 additions & 12 deletions lakesoul-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,7 @@ SPDX-License-Identifier: Apache-2.0
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>shaded</shadedClassifierName>
<createDependencyReducedPom>true</createDependencyReducedPom>
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<includes>
<include>**</include>
Expand Down Expand Up @@ -179,16 +178,7 @@ SPDX-License-Identifier: Apache-2.0
<artifactId>flatten-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<flattenMode>oss</flattenMode>
<pomElements>
<dependencyManagement>keep</dependencyManagement>
<dependencies>keep</dependencies>
<description>resolve</description>
<profiles>remove</profiles>
<distributionManagement>remove</distributionManagement>
<pluginManagement>remove</pluginManagement>
<build>remove</build>
</pomElements>
<flattenMode>ossrh</flattenMode>
</configuration>
<executions>
<!-- enable flattening -->
Expand Down
13 changes: 2 additions & 11 deletions lakesoul-flink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -692,18 +692,9 @@ SPDX-License-Identifier: Apache-2.0
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<!--<version>1.6.0</version>-->
<version>1.6.0</version>
<configuration>
<flattenMode>oss</flattenMode>
<pomElements>
<dependencyManagement>keep</dependencyManagement>
<dependencies>keep</dependencies>
<description>resolve</description>
<profiles>remove</profiles>
<distributionManagement>remove</distributionManagement>
<pluginManagement>remove</pluginManagement>
<build>remove</build>
</pomElements>
<flattenMode>ossrh</flattenMode>
</configuration>
<executions>
<!-- enable flattening -->
Expand Down
13 changes: 2 additions & 11 deletions lakesoul-spark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -558,18 +558,9 @@ SPDX-License-Identifier: Apache-2.0
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<!--<version>1.6.0</version>-->
<version>1.6.0</version>
<configuration>
<flattenMode>oss</flattenMode>
<pomElements>
<dependencyManagement>keep</dependencyManagement>
<dependencies>keep</dependencies>
<description>resolve</description>
<profiles>remove</profiles>
<distributionManagement>remove</distributionManagement>
<pluginManagement>remove</pluginManagement>
<build>remove</build>
</pomElements>
<flattenMode>ossrh</flattenMode>
</configuration>
<executions>
<!-- enable flattening -->
Expand Down
16 changes: 3 additions & 13 deletions native-io/lakesoul-io-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,7 @@ SPDX-License-Identifier: Apache-2.0
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>shaded</shadedClassifierName>
<createDependencyReducedPom>true</createDependencyReducedPom>
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<includes>
<include>**</include>
Expand Down Expand Up @@ -461,18 +460,9 @@ SPDX-License-Identifier: Apache-2.0
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<!--<version>1.6.0</version>-->
<version>1.6.0</version>
<configuration>
<flattenMode>oss</flattenMode>
<pomElements>
<dependencyManagement>keep</dependencyManagement>
<dependencies>keep</dependencies>
<description>resolve</description>
<profiles>remove</profiles>
<distributionManagement>remove</distributionManagement>
<pluginManagement>remove</pluginManagement>
<build>remove</build>
</pomElements>
<flattenMode>ossrh</flattenMode>
</configuration>
<executions>
<!-- enable flattening -->
Expand Down
11 changes: 2 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ SPDX-License-Identifier: Apache-2.0
</developers>

<properties>
<revision>2.5.2</revision>
<revision>2.5.3</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
Expand Down Expand Up @@ -205,14 +205,7 @@ SPDX-License-Identifier: Apache-2.0
<artifactId>flatten-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<flattenMode>oss</flattenMode>
<pomElements>
<dependencyManagement>keep</dependencyManagement>
<dependencies>keep</dependencies>
<name>keep</name>
<description>resolve</description>
<profiles>remove</profiles>
</pomElements>
<flattenMode>ossrh</flattenMode>
</configuration>
<executions>
<!-- enable flattening -->
Expand Down
2 changes: 1 addition & 1 deletion website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const config = {
remarkPlugins: [
[variableInjector, {
replacements: {
VERSION: '2.5.2',
VERSION: '2.5.3',
CURRENT_YEAR: new Date().getFullYear()
}
}]
Expand Down

0 comments on commit 0925fd1

Please sign in to comment.