Skip to content

Commit

Permalink
0.0.0 init
Browse files Browse the repository at this point in the history
  • Loading branch information
fengwenyi committed Mar 20, 2024
1 parent 0d5490f commit e21ebf1
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions LOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 版本更新日志

## v3.0.0

java 17

## v2.7.5 (2024-03-20)

:bug: Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>com.fengwenyi</groupId>
<artifactId>api-result</artifactId>
<version>2.7.5</version>
<version>3.0.0</version>
</dependency>
```

Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@

<groupId>com.fengwenyi</groupId>
<artifactId>api-result</artifactId>
<version>2.7.5</version>
<version>3.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>api-result</name>
<description>一套RESTful风格API接口响应参数规范化的解决方案</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<junit.version>4.13.2</junit.version>
<java.version>17</java.version>
<junit-jupiter.version>5.10.2</junit-jupiter.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
</properties>

<dependencies>
<!-- 测试 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/fengwenyi/api/result/DateTimeTests.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.fengwenyi.api.result;

import org.junit.Test;
import org.junit.jupiter.api.Test;

import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.fengwenyi.api.result;

import org.junit.Test;
import org.junit.jupiter.api.Test;

import java.util.*;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.fengwenyi.api.result;

import org.junit.Test;
import org.junit.jupiter.api.Test;

/**
* @author <a href="https://www.fengwenyi.com">Erwin Feng</a>
Expand Down

0 comments on commit e21ebf1

Please sign in to comment.