diff --git a/build.gradle.kts b/build.gradle.kts index 4520e18..7fa1952 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 diff --git a/src/test/java/org/blue/club/ClubApplicationTests.java b/src/test/java/org/blue/club/ClubApplicationTests.java index b608672..b636ce1 100644 --- a/src/test/java/org/blue/club/ClubApplicationTests.java +++ b/src/test/java/org/blue/club/ClubApplicationTests.java @@ -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() { } } diff --git a/src/test/java/org/blue/club/mapper/TestMapper.java b/src/test/java/org/blue/club/mapper/TestMapper.java deleted file mode 100644 index 344ba0d..0000000 --- a/src/test/java/org/blue/club/mapper/TestMapper.java +++ /dev/null @@ -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 { -}