Skip to content

Commit

Permalink
修改了 pom.xml 中的版本和依赖包的版本
Browse files Browse the repository at this point in the history
  • Loading branch information
blinkfox committed Oct 18, 2023
1 parent 34e0ebf commit b469df6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
14 changes: 7 additions & 7 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</artifactId>
<version>3.0.0</version>
<version>3.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>fenix</name>
Expand Down Expand Up @@ -46,25 +46,25 @@
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>3.0.0</version>
<version>3.1.4</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-core</artifactId>
<version>6.1.6.Final</version>
<version>6.2.9.Final</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.5</version>
<version>1.4.7</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<version>1.18.26</version>
<optional>true</optional>
</dependency>

Expand All @@ -91,7 +91,7 @@
<dependency>
<groupId>org.mvel</groupId>
<artifactId>mvel2</artifactId>
<version>2.4.14.Final</version>
<version>2.4.15.Final</version>
</dependency>
<dependency>
<groupId>jaxen</groupId>
Expand All @@ -109,7 +109,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>6.0.0</version>
<version>6.0.12</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public class SnowflakeIdGenerator extends IdentityGenerator {
* @param obj 对象
* @return ID 结果
*/
@Override
public Serializable generate(SharedSessionContractImplementor s, Object obj) {
return idWorker.getId();
}
Expand Down

0 comments on commit b469df6

Please sign in to comment.