Skip to content

Commit

Permalink
release 2.0.0.0-RC2.
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyeBeFreeman committed Sep 26, 2024
1 parent e69df8c commit 1ee5edc
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

<properties>
<!-- Project revision -->
<revision>2.0.0.0-SNAPSHOT</revision>
<revision>2.0.0.0-RC2</revision>

<timestamp>${maven.build.timestamp}</timestamp>
<skip.maven.deploy>false</skip.maven.deploy>
Expand All @@ -76,7 +76,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<jackson.version>2.14.2</jackson.version>
<specification.version>1.5.3-SNAPSHOT</specification.version>
<specification.version>1.5.3</specification.version>
<consul.version>1.4.5</consul.version>
<gson.version>2.9.1</gson.version>
<nacos.version>2.1.1</nacos.version>
Expand Down Expand Up @@ -106,6 +106,7 @@
<maven.deploy.plugin.version>3.0.0-M1</maven.deploy.plugin.version>
<maven.failsafe.plugin.version>3.0.0-M5</maven.failsafe.plugin.version>
<maven.flatten.plugin.version>1.2.5</maven.flatten.plugin.version>
<maven.clean.plugin.version>3.1.0</maven.clean.plugin.version>
<okhttp.version>2.7.5</okhttp.version>
<httpclient.version>4.5.14</httpclient.version>
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
Expand Down Expand Up @@ -266,6 +267,21 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>${maven.clean.plugin.version}</version>
<configuration>
<filesets>
<fileset>
<directory>${project.basedir}</directory>
<includes>
<include>dependency-reduced-pom.xml</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 1ee5edc

Please sign in to comment.