deps: change the mmga starter to the latest snapshot version

This commit is contained in:
wzp 2024-12-24 16:17:41 +08:00
parent 91a5a591e1
commit 786eef1a63
3 changed files with 2 additions and 16 deletions

View File

@ -28,7 +28,7 @@ repositories {
dependencies {
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.mmga:make-minecraft-great-again-spring-boot-starter:0.0.5-20241219.110855-5")
implementation("org.mmga:make-minecraft-great-again-spring-boot-starter:0.0.5-20241224.081553-6")
implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.10.2")
annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.10.2")
// https://mvnrepository.com/artifact/commons-codec/commons-codec

View File

@ -1,16 +1,11 @@
package org.blue.club;
import org.blue.club.mapper.TestMapper;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class ClubApplicationTests {
@Test
void contextLoads(@Autowired TestMapper mapper) {
System.out.println(mapper.selectAllWithRelations());
void contextLoads() {
}
}

View File

@ -1,9 +0,0 @@
package org.blue.club.mapper;
import com.mybatisflex.core.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.blue.club.entities.dto.User;
@Mapper
public interface TestMapper extends BaseMapper<User> {
}