Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
tywo45 committed Feb 11, 2022
1 parent c4212f9 commit e57e374
Showing 1 changed file with 12 additions and 22 deletions.
34 changes: 12 additions & 22 deletions src/parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,16 @@
<logback.version>1.3.0-alpha12</logback.version>
<slf4j.version>2.0.0-alpha6</slf4j.version>
<jdk.version>17</jdk.version>
<junit.version>4.13.1</junit.version>
<junit.version>4.13.2</junit.version>
<commons-collections4.version>4.4</commons-collections4.version>
<commons-io.version>2.11.0</commons-io.version>
<commons-lang3.version>3.12.0</commons-lang3.version>
<commons-codec.version>1.15</commons-codec.version>
<commons-compress.version>1.21</commons-compress.version>
<fastjson.version>1.2.79</fastjson.version>
<testng.version>7.4.0</testng.version>
<testng.version>7.5</testng.version>
<hutool.version>5.7.20</hutool.version>
<protobuf-java.version>3.12.2</protobuf-java.version>
<protobuf-java.version>4.0.0-rc-2</protobuf-java.version>
<commons-beanutils.version>1.9.4</commons-beanutils.version>
<protobuf-java-format.version>1.4</protobuf-java-format.version>
<protostuff.version>1.7.4</protostuff.version>
Expand Down Expand Up @@ -113,6 +113,8 @@
<h2.version>2.1.210</h2.version>
<metrics.version>4.2.7</metrics.version>
<junit-jupiter.version>5.8.2</junit-jupiter.version>
<log4j2.version>2.17.1</log4j2.version>
<mongodb.version>4.5.0</mongodb.version>
</properties>

<developers>
Expand Down Expand Up @@ -248,7 +250,6 @@
</dependency>



<dependency>
<groupId>org.t-io</groupId>
<artifactId>tio-websocket-common</artifactId>
Expand All @@ -259,7 +260,6 @@
<artifactId>tio-websocket-server</artifactId>
<version>${tio.version}</version>
</dependency>

<dependency>
<groupId>org.t-io</groupId>
<artifactId>tio-http-common</artifactId>
Expand Down Expand Up @@ -452,13 +452,13 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.17.0</version>
<version>${log4j2.version}</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j</artifactId>
<version>2.17.0</version>
<version>${log4j2.version}</version>
</dependency>


Expand Down Expand Up @@ -703,17 +703,17 @@
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>bson</artifactId>
<version>4.3.1</version>
<version>${mongodb.version}</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-core</artifactId>
<version>4.3.1</version>
<version>${mongodb.version}</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-reactivestreams</artifactId>
<version>4.3.1</version>
<version>${mongodb.version}</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -1184,7 +1184,6 @@
</dependencyManagement>



<!-- 插件配置 -->
<build>
<pluginManagement>
Expand Down Expand Up @@ -1238,7 +1237,6 @@
</plugin>



<!-- resource插件, 设定编码 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -1249,8 +1247,6 @@
</plugin>




<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand Down Expand Up @@ -1336,7 +1332,6 @@
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>


<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
Expand All @@ -1363,7 +1358,6 @@
</plugin>



<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand All @@ -1389,7 +1383,7 @@
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<addMavenDescriptor>false</addMavenDescriptor><!-- 生成的jar中,不要包含pom.xml和pom.properties这两个文件 -->
<addMavenDescriptor>false</addMavenDescriptor> <!-- 生成的jar中,不要包含pom.xml和pom.properties这两个文件 -->
</archive>
</configuration>
</plugin>
Expand All @@ -1398,7 +1392,6 @@
</build>



<reporting>
<plugins>
<plugin>
Expand All @@ -1423,9 +1416,6 @@
</reporting>





<profiles>
<profile>
<id>release</id>
Expand Down Expand Up @@ -1458,7 +1448,7 @@
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam><!-- 防止生成docs时报错 -->
<additionalparam>-Xdoclint:none</additionalparam> <!-- 防止生成docs时报错 -->
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit e57e374

Please sign in to comment.