代码-清除老旧pom依赖

This commit is contained in:
khalil
2024-04-19 16:40:27 +08:00
parent bb9be6959c
commit 42a06ebcd9
33 changed files with 114 additions and 382 deletions

View File

@@ -15,7 +15,7 @@
<dependencies>
<dependency>
<groupId>com.accompany</groupId>
<artifactId>accompany-core-starter</artifactId>
<artifactId>accompany-core</artifactId>
<version>${revision}</version>
</dependency>
<dependency>

View File

@@ -5,7 +5,6 @@ import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.SpringBootConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
@@ -19,7 +18,6 @@ import org.springframework.scheduling.annotation.EnableScheduling;
@ComponentScan({"com.accompany","com.xuanyin"})
@EnableScheduling
@EnableAsync(proxyTargetClass = true)
@EnableFeignClients(basePackages = "com.accompany")
@MapperScan({"com.accompany.*.mapper","com.accompany.*.mybatismapper", "com.xuanyin.*.mapper"})
@SpringBootConfiguration
public class JobApplication {