Skip to content

Commit

Permalink
update v1.3.0定版
Browse files Browse the repository at this point in the history
  • Loading branch information
Robot committed Nov 27, 2023
1 parent 4353826 commit 5bfdae7
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 27 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# EasyEnum
[![coverage](https://img.shields.io/badge/coverage-100%25-red)]()
[![GitHub](https://img.shields.io/github/license/luo-zhan/EasyEnum)](http://opensource.org/licenses/apache-2-0)
[![Coverage Status](https://coveralls.io/repos/github/luo-zhan/EasyEnum/badge.svg?branch=main)](https://coveralls.io/github/luo-zhan/EasyEnum?branch=main)
[![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/luo-zhan/EasyEnum)]()
[![GitHub](https://img.shields.io/github/license/luo-zhan/EasyEnum)](http://opensource.org/licenses/apache-2-0)
[![GitHub last commit](https://img.shields.io/github/last-commit/luo-zhan/EasyEnum?label=Last%20commit)]()

重铸枚举荣光!!
Expand Down Expand Up @@ -199,7 +199,7 @@ wrapper.eq(Student::sex, SexEnum.MALE);
<dependency>
<groupId>io.github.luo-zhan</groupId>
<artifactId>easy-enum-for-spring</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.3.0-RELEASE</version>
</dependency>
```
如果你不需要Spring和Mybatis的支持,只需要Dict枚举的工具方法,可以只引入以下依赖
Expand All @@ -208,7 +208,7 @@ wrapper.eq(Student::sex, SexEnum.MALE);
<dependency>
<groupId>io.github.luo-zhan</groupId>
<artifactId>easy-enum</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.3.0-RELEASE</version>
</dependency>
```
## 交流
Expand Down
11 changes: 3 additions & 8 deletions easy-enum-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,21 @@
<parent>
<groupId>io.github.luo-zhan</groupId>
<artifactId>EasyEnum</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.3.0-RELEASE</version>
</parent>

<artifactId>easy-enum-demo</artifactId>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>io.github.luo-zhan</groupId>
<artifactId>easy-enum</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.3.0-RELEASE</version>
</dependency>
<dependency>
<groupId>io.github.luo-zhan</groupId>
<artifactId>easy-enum-for-spring</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.3.0-RELEASE</version>
</dependency>

<dependency>
Expand Down
9 changes: 2 additions & 7 deletions easy-enum-for-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,16 @@
<parent>
<groupId>io.github.luo-zhan</groupId>
<artifactId>EasyEnum</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.3.0-RELEASE</version>
</parent>

<artifactId>easy-enum-for-spring</artifactId>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>io.github.luo-zhan</groupId>
<artifactId>easy-enum</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.3.0-RELEASE</version>
</dependency>

<dependency>
Expand Down
7 changes: 1 addition & 6 deletions easy-enum/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,11 @@
<parent>
<groupId>io.github.luo-zhan</groupId>
<artifactId>EasyEnum</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.3.0-RELEASE</version>
</parent>

<artifactId>easy-enum</artifactId>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
23 changes: 21 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>io.github.luo-zhan</groupId>
<artifactId>EasyEnum</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.3.0-RELEASE</version>
<name>EasyEnum</name>
<modules>
<module>easy-enum</module>
Expand All @@ -17,6 +17,11 @@
<description>枚举也能如此简单</description>
<url>https://github.com/luo-zhan/EasyEnum</url>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<developers>
<developer>
Expand Down Expand Up @@ -134,9 +139,23 @@
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
<configuration>
<repoToken>TsQHHPW9P2wm6TNuqLteuICP0XgoglGeq</repoToken>
<repoToken>7fUGIlSUFizP5JseL6EoBEVj4PEmRZEvp</repoToken>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.6.201602180812</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>

</plugin>
</plugins>
</build>
</profile>
Expand Down

0 comments on commit 5bfdae7

Please sign in to comment.