Skip to content

Commit

Permalink
新增对 SpringBoot 3.x 版本下的 Fenix 3.x 版本的支持。
Browse files Browse the repository at this point in the history
  • Loading branch information
blinkfox committed Oct 23, 2023
1 parent c013116 commit 66044a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.blinkfox</groupId>
<artifactId>fenix-spring-boot-starter</artifactId>
<version>2.7.0</version>
<version>3.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>fenix-spring-boot-starter</name>
Expand Down Expand Up @@ -34,8 +34,8 @@
</scm>

<properties>
<java.version>1.8</java.version>
<spring.boot.version>2.6.5</spring.boot.version>
<java.version>17</java.version>
<spring.boot.version>3.1.4</spring.boot.version>
</properties>

<dependencies>
Expand All @@ -54,13 +54,13 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
<version>2.0.9</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
<version>1.18.26</version>
<optional>true</optional>
</dependency>

Expand All @@ -79,7 +79,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.6.7.Final</version>
<version>6.2.9.Final</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -91,8 +91,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>17</source>
<target>17</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/META-INF/spring.factories

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
com.blinkfox.fenix.starter.FenixAutoConfiguration

0 comments on commit 66044a9

Please sign in to comment.