You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ty...@apache.org on 2023/03/19 10:49:28 UTC

[incubator-seatunnel] branch 2.3.1-release updated: [Release][2.3.1][pom] Remove spotless plugin

This is an automated email from the ASF dual-hosted git repository.

tyrantlucifer pushed a commit to branch 2.3.1-release
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/2.3.1-release by this push:
     new ff89aa983 [Release][2.3.1][pom] Remove spotless plugin
ff89aa983 is described below

commit ff89aa9836d70308882dbded3674d0f5d5da339a
Author: tyrantlucifer <ty...@gmail.com>
AuthorDate: Sun Mar 19 18:49:10 2023 +0800

    [Release][2.3.1][pom] Remove spotless plugin
---
 pom.xml | 73 -----------------------------------------------------------------
 1 file changed, 73 deletions(-)

diff --git a/pom.xml b/pom.xml
index 7ba5379c7..04215f0f8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -762,79 +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>
-                        <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>