This is an automated email from the ASF dual-hosted git repository.
ic4y pushed a commit to branch 2.3.3-release
in repository https://gitbox.apache.org/repos/asf/seatunnel.git
The following commit(s) were added to refs/heads/2.3.3-release by this push:
new 576f76fe21 [Release][2.3.2] Prepare for release 2.3.2
576f76fe21 is described below
commit 576f76fe21310817e900965ff87691b74a113b9a
Author: liuli <[email protected]>
AuthorDate: Thu Aug 17 18:42:05 2023 +0800
[Release][2.3.2] Prepare for release 2.3.2
---
.gitignore | 2 --
bin/install-plugin.sh | 4 +--
pom.xml | 76 ---------------------------------------------------
3 files changed, 2 insertions(+), 80 deletions(-)
diff --git a/.gitignore b/.gitignore
index 25977068e4..757280ec89 100644
--- a/.gitignore
+++ b/.gitignore
@@ -47,5 +47,3 @@ Test.scala
test.conf
spark-warehouse
*.flattened-pom.xml
-
-seatunnel-examples
\ No newline at end of file
diff --git a/bin/install-plugin.sh b/bin/install-plugin.sh
index cddf4ebf68..b8a1cca714 100755
--- a/bin/install-plugin.sh
+++ b/bin/install-plugin.sh
@@ -23,8 +23,8 @@
# get seatunnel home
SEATUNNEL_HOME=$(cd $(dirname $0);cd ../;pwd)
-# connector default version is 2.3.1, you can also choose a custom version.
eg: 2.1.2: sh install-plugin.sh 2.1.2
-version=2.3.1
+# connector default version is 2.3.3, you can also choose a custom version.
eg: 2.1.2: sh install-plugin.sh 2.1.2
+version=2.3.3
if [ -n "$1" ]; then
version="$1"
diff --git a/pom.xml b/pom.xml
index 224a339fc6..7c3a1a8f9e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -762,82 +762,6 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
- <plugin>
- <groupId>com.diffplug.spotless</groupId>
- <artifactId>spotless-maven-plugin</artifactId>
- <version>${spotless.version}</version>
- <configuration>
- <java>
- <excludes>
-
<exclude>src/main/java/org/apache/seatunnel/antlr4/generated/*.*</exclude>
- </excludes>
- <googleJavaFormat>
- <version>1.7</version>
- <style>AOSP</style>
- </googleJavaFormat>
- <removeUnusedImports />
- <formatAnnotations />
- <importOrder>
-
<order>org.apache.seatunnel.shade,org.apache.seatunnel,org.apache,org,,javax,java,\#</order>
- </importOrder>
- <replaceRegex>
- <name>Remove wildcard imports</name>
-
<searchRegex>import\s+(static)*\s*[^\*\s]+\*;(\r\n|\r|\n)</searchRegex>
- <replacement>$1</replacement>
- </replaceRegex>
- <replaceRegex>
- <name>Block powermock</name>
-
<searchRegex>import\s+org\.powermock\.[^\*\s]*(|\*);(\r\n|\r|\n)</searchRegex>
- <replacement>$1</replacement>
- </replaceRegex>
- <replaceRegex>
- <name>Block jUnit4 imports</name>
-
<searchRegex>import\s+org\.junit\.[^jupiter][^\*\s]*(|\*);(\r\n|\r|\n)</searchRegex>
- <replacement>$1</replacement>
- </replaceRegex>
- </java>
- <pom>
- <sortPom>
- <encoding>UTF-8</encoding>
- <nrOfIndentSpace>4</nrOfIndentSpace>
- <keepBlankLines>true</keepBlankLines>
- <indentBlankLines>false</indentBlankLines>
- <indentSchemaLocation>true</indentSchemaLocation>
-
<spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement>
- <sortModules>false</sortModules>
- <sortExecutions>false</sortExecutions>
- <predefinedSortOrder>custom_1</predefinedSortOrder>
- <expandEmptyElements>false</expandEmptyElements>
- <sortProperties>false</sortProperties>
- </sortPom>
- <replace>
- <name>Leading blank line</name>
- <search>project</search>
- <replacement>project</replacement>
- </replace>
- </pom>
- <markdown>
- <includes>
- <include>docs/**/*.md</include>
- </includes>
- <excludes>
- <exclude>**/.github/**/*.md</exclude>
- </excludes>
- <flexmark />
- </markdown>
- <upToDateChecking>
- <enabled>true</enabled>
- </upToDateChecking>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>check</goal>
- </goals>
- <phase>compile</phase>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>