Commit 8e9a7d62 authored by taabe's avatar taabe

添加tyboot-core-auth等依赖

parent 59a23605
target/ target/
\ No newline at end of file /.idea/
*.iml
package com.yeejoin.amos; package com.yeejoin.amos;
import org.mybatis.spring.annotation.MapperScan;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
...@@ -24,7 +25,7 @@ import springfox.documentation.swagger2.annotations.EnableSwagger2; ...@@ -24,7 +25,7 @@ import springfox.documentation.swagger2.annotations.EnableSwagger2;
* *
* @author DELL * @author DELL
*/ */
@SpringBootApplication
@EnableTransactionManagement @EnableTransactionManagement
@EnableConfigurationProperties @EnableConfigurationProperties
@EnableSwagger2 @EnableSwagger2
...@@ -33,7 +34,11 @@ import springfox.documentation.swagger2.annotations.EnableSwagger2; ...@@ -33,7 +34,11 @@ import springfox.documentation.swagger2.annotations.EnableSwagger2;
@EnableFeignClients @EnableFeignClients
@EnableAsync @EnableAsync
@EnableEurekaClient @EnableEurekaClient
@ComponentScan({"org.typroject","com.yeejoin.amos"}) @MapperScan({"org.typroject.tyboot.demo.face.orm.dao*",
"org.typroject.tyboot.face.*.orm.dao*",
"org.typroject.tyboot.core.auth.face.orm.dao*",
"org.typroject.tyboot.component.*.face.orm.dao*"})
@SpringBootApplication(scanBasePackages = {"com.yeejoin.amos","org.typroject"})
public class AmosTzsApplication { public class AmosTzsApplication {
private static final Logger logger = LoggerFactory.getLogger(AmosTzsApplication.class); private static final Logger logger = LoggerFactory.getLogger(AmosTzsApplication.class);
......
...@@ -137,24 +137,6 @@ ...@@ -137,24 +137,6 @@
<artifactId>jsqlparser</artifactId> <artifactId>jsqlparser</artifactId>
<version>2.1</version> <version>2.1</version>
</dependency> </dependency>
<!-- 日志依赖 -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<scope>compile</scope>
</dependency>
<dependency> <dependency>
<groupId>org.apache.httpcomponents</groupId> <groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId> <artifactId>httpclient</artifactId>
...@@ -184,10 +166,10 @@ ...@@ -184,10 +166,10 @@
<artifactId>swagger-models</artifactId> <artifactId>swagger-models</artifactId>
<version>1.5.21</version> <version>1.5.21</version>
</dependency> </dependency>
<dependency> <!-- <dependency>-->
<groupId>org.liquibase</groupId> <!-- <groupId>org.liquibase</groupId>-->
<artifactId>liquibase-core</artifactId> <!-- <artifactId>liquibase-core</artifactId>-->
</dependency> <!-- </dependency>-->
<dependency> <dependency>
<groupId>org.quartz-scheduler</groupId> <groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId> <artifactId>quartz</artifactId>
...@@ -451,6 +433,30 @@ ...@@ -451,6 +433,30 @@
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency>
<groupId>org.typroject</groupId>
<artifactId>tyboot-core-auth</artifactId>
<version>${tyboot-version}</version>
<exclusions>
<exclusion>
<groupId>org.typroject</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.typroject</groupId>
<artifactId>tyboot-core-rdbms</artifactId>
<version>${tyboot-version}</version>
<exclusions>
<exclusion>
<groupId>org.typroject</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies> </dependencies>
<dependencyManagement> <dependencyManagement>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment