Skip to content

Commit

Permalink
3.0.1 init
Browse files Browse the repository at this point in the history
  • Loading branch information
fengwenyi committed Aug 11, 2024
1 parent 7e95924 commit 4dce3d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ JavaLib,是一个Java开发基础工具类库,对项目开发中常用的工
<dependency>
<groupId>com.fengwenyi</groupId>
<artifactId>JavaLib</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
</dependency>
```

Expand Down
8 changes: 5 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.fengwenyi</groupId>
<artifactId>JavaLib</artifactId>
<version>3.0.0</version>
<version>3.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>JavaLib</name>
<description>JAVA开发常用工具集</description>
Expand All @@ -33,6 +33,8 @@
<maven-gpg-plugin.version>3.2.1</maven-gpg-plugin.version>
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
<lombok.version>1.18.30</lombok.version>
<apache-maven-compiler-plugin.version>3.13.0</apache-maven-compiler-plugin.version>
<nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -146,13 +148,13 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<version>${apache-maven-compiler-plugin.version}</version>
</plugin>
<!-- sonatype提供了自动release的插件,这意味着运行mvn clean deploy后不用手动去close-> release了,此插件会自动release我们的项目到Maven中央仓库。 -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
<version>${nexus-staging-maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>oss</serverId>
Expand Down

0 comments on commit 4dce3d9

Please sign in to comment.