Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1ee5edc

Browse files
committedSep 26, 2024·
release 2.0.0.0-RC2.
1 parent e69df8c commit 1ee5edc

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed
 

‎pom.xml

+18-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565

6666
<properties>
6767
<!-- Project revision -->
68-
<revision>2.0.0.0-SNAPSHOT</revision>
68+
<revision>2.0.0.0-RC2</revision>
6969

7070
<timestamp>${maven.build.timestamp}</timestamp>
7171
<skip.maven.deploy>false</skip.maven.deploy>
@@ -76,7 +76,7 @@
7676
<maven.compiler.source>1.8</maven.compiler.source>
7777
<maven.compiler.target>1.8</maven.compiler.target>
7878
<jackson.version>2.14.2</jackson.version>
79-
<specification.version>1.5.3-SNAPSHOT</specification.version>
79+
<specification.version>1.5.3</specification.version>
8080
<consul.version>1.4.5</consul.version>
8181
<gson.version>2.9.1</gson.version>
8282
<nacos.version>2.1.1</nacos.version>
@@ -106,6 +106,7 @@
106106
<maven.deploy.plugin.version>3.0.0-M1</maven.deploy.plugin.version>
107107
<maven.failsafe.plugin.version>3.0.0-M5</maven.failsafe.plugin.version>
108108
<maven.flatten.plugin.version>1.2.5</maven.flatten.plugin.version>
109+
<maven.clean.plugin.version>3.1.0</maven.clean.plugin.version>
109110
<okhttp.version>2.7.5</okhttp.version>
110111
<httpclient.version>4.5.14</httpclient.version>
111112
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
@@ -266,6 +267,21 @@
266267
</execution>
267268
</executions>
268269
</plugin>
270+
<plugin>
271+
<groupId>org.apache.maven.plugins</groupId>
272+
<artifactId>maven-clean-plugin</artifactId>
273+
<version>${maven.clean.plugin.version}</version>
274+
<configuration>
275+
<filesets>
276+
<fileset>
277+
<directory>${project.basedir}</directory>
278+
<includes>
279+
<include>dependency-reduced-pom.xml</include>
280+
</includes>
281+
</fileset>
282+
</filesets>
283+
</configuration>
284+
</plugin>
269285
</plugins>
270286
</build>
271287

0 commit comments

Comments
 (0)
Please sign in to comment.