summaryrefslogtreecommitdiff
path: root/groot-common/pom.xml
diff options
context:
space:
mode:
authordoufenghu <[email protected]>2023-10-21 00:11:06 +0800
committerdoufenghu <[email protected]>2023-10-21 00:11:06 +0800
commit4daba8db4d3d606c05eb483ad30d0464b13b8ce9 (patch)
tree305e975a6c11cadbc0ae99d2ecac4322faac9671 /groot-common/pom.xml
parentabe49fe77469f19c7a5b9ebe1a99e30bae8fb57c (diff)
基于mvn spotless:apply 对其代码进行格式化
Diffstat (limited to 'groot-common/pom.xml')
-rw-r--r--groot-common/pom.xml30
1 files changed, 13 insertions, 17 deletions
diff --git a/groot-common/pom.xml b/groot-common/pom.xml
index e8e808d..0701b05 100644
--- a/groot-common/pom.xml
+++ b/groot-common/pom.xml
@@ -1,13 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<project xmlns="http://maven.apache.org/POM/4.0.0" 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>
- <artifactId>groot-stream-platform</artifactId>
<groupId>com.geedgenetworks</groupId>
+ <artifactId>groot-stream-platform</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
- <modelVersion>4.0.0</modelVersion>
<artifactId>groot-common</artifactId>
<properties>
@@ -33,7 +32,6 @@
<scope>compile</scope>
</dependency>
-
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
@@ -56,7 +54,6 @@
<version>4.12</version>
</dependency>
-
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-clients_2.12</artifactId>
@@ -91,8 +88,8 @@
<version>${galaxy.version}</version>
<exclusions>
<exclusion>
- <artifactId>httpclient</artifactId>
<groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
</exclusion>
</exclusions>
</dependency>
@@ -133,16 +130,16 @@
<scope>provided</scope>
<exclusions>
<exclusion>
- <artifactId>httpclient</artifactId>
<groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
</exclusion>
<exclusion>
- <artifactId>httpcore</artifactId>
<groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpcore</artifactId>
</exclusion>
<exclusion>
- <artifactId>jdk.tools</artifactId>
<groupId>jdk.tools</groupId>
+ <artifactId>jdk.tools</artifactId>
</exclusion>
</exclusions>
</dependency>
@@ -173,8 +170,8 @@
<groupId>org.apache.flink</groupId>
<artifactId>flink-streaming-java_${scala.version}</artifactId>
<version>${flink.version}</version>
- <scope>provided</scope>
<classifier>tests</classifier>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>com.googlecode.aviator</groupId>
@@ -188,12 +185,12 @@
<version>${hbase.version}</version>
<exclusions>
<exclusion>
- <artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
- <artifactId>log4j-over-slf4j</artifactId>
<groupId>org.slf4j</groupId>
+ <artifactId>log4j-over-slf4j</artifactId>
</exclusion>
</exclusions>
</dependency>
@@ -208,7 +205,6 @@
<version>4.5.13</version>
</dependency>
-
</dependencies>
<build>
@@ -219,10 +215,10 @@
<version>3.1.1</version>
<executions>
<execution>
- <phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
+ <phase>package</phase>
<configuration>
<finalName>groot-common</finalName>
<artifactSet>
@@ -244,7 +240,7 @@
</filters>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
- <mainClass/>
+ <mainClass />
</transformer>
</transformers>
</configuration>
@@ -254,4 +250,4 @@
</plugins>
</build>
-</project> \ No newline at end of file
+</project>