diff --git a/mall-ebtp-cloud-core/pom.xml b/mall-ebtp-cloud-core/pom.xml
index f79ba70..9cf5eae 100644
--- a/mall-ebtp-cloud-core/pom.xml
+++ b/mall-ebtp-cloud-core/pom.xml
@@ -16,44 +16,249 @@
0.0.1
+ 3.0.0
+ 1.8
+ 2.6.0-SNAPSHOT
+ 3.2.0
+ 1.5.21
+ 1.3.3
+ 26.0-jre
+ 1.1.14
+ Hoxton.SR7
+ 2.0.3
+ UTF-8
+ UTF-8
+ 1.8
+ 5.4.1
-
-
- cn.chinaunicom.sdsi
- mall-core
- ${sdsi-mall-core-version}
-
-
-
- org.springframework.boot
- spring-boot-starter-test
- test
-
-
-
-
-
-
- repo_group_seal
- Nexus Snapshot Repository
- http://192.168.30.126:31233/repository/eshop-grouppath-45c07c6e-maven-group/
-
- true
-
-
- true
-
-
-
- aliyun-repos
- https://maven.aliyun.com/repository/public
-
- false
-
-
-
+
+
+
+ cn.chinaunicom.sdsi
+ mall-core
+ ${sdsi-mall-core-version}
+
+
+
+
+
+
+ cn.chinaunicom.sdsi
+ chinaunicom-excelutils
+ 1.0.0
+
+
+
+
+ cn.chinaunicom.sdsi
+ unifast-storage
+ 1.0.0
+
+
+
+ org.springframework.boot
+ spring-boot-starter
+
+
+
+ org.springframework.boot
+ spring-boot-starter-cache
+
+
+
+ org.springframework.boot
+ spring-boot-starter-data-redis
+
+
+ redis.clients
+ jedis
+
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+ org.springframework.cloud
+ spring-cloud-security
+
+
+ org.springframework.cloud
+ spring-cloud-starter-oauth2
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+ org.springframework.boot
+ spring-boot-starter-aop
+
+
+
+ org.springframework.kafka
+ spring-kafka
+
+
+
+ io.springfox
+ springfox-swagger2
+ 2.9.2
+
+
+ io.swagger
+ swagger-annotations
+
+
+ io.swagger
+ swagger-models
+
+
+
+
+ io.swagger
+ swagger-annotations
+ ${swagger.version}
+
+
+ io.swagger
+ swagger-models
+ ${swagger.version}
+
+
+ io.springfox
+ springfox-swagger-ui
+ 2.9.2
+
+
+
+ io.github.swagger2markup
+ swagger2markup
+ ${swagger2markup.version}
+ test
+ true
+
+
+
+
+ org.projectlombok
+ lombok
+
+
+ com.google.guava
+ guava
+
+
+
+
+ org.apache.poi
+ poi
+ 3.9
+
+
+ org.apache.poi
+ poi-ooxml
+ 3.9
+
+
+ org.apache.poi
+ poi-ooxml-schemas
+ 3.9
+
+
+
+ org.springframework.boot
+ spring-boot-devtools
+ true
+
+
+
+ com.google.code.gson
+ gson
+
+
+ org.springframework.security.oauth
+ spring-security-oauth2
+ 2.2.1.RELEASE
+ compile
+
+
+
+ com.sun.jersey
+ jersey-client
+ 1.18.3
+
+
+ net.sf.json-lib
+ json-lib
+ 2.4
+ jdk15
+
+
+ commons-fileupload
+ commons-fileupload
+ 1.3.2
+
+
+ org.aspectj
+ aspectjweaver
+
+
+ org.aspectj
+ aspectjrt
+
+
+
+ cn.hutool
+ hutool-all
+ ${hutool.version}
+
+
+
+ org.hibernate.validator
+ hibernate-validator
+ 6.1.5.Final
+
+
+
+ org.springframework.boot
+ spring-boot-configuration-processor
+ true
+
+
+ org.apache.commons
+ commons-lang3
+
+
+
+
+
+
+ repo_group_seal
+ Nexus Snapshot Repository
+ http://192.168.30.126:31233/repository/eshop-grouppath-45c07c6e-maven-group/
+
+ true
+
+
+ true
+
+
+
+ aliyun-repos
+ https://maven.aliyun.com/repository/public
+
+ false
+
+
+
diff --git a/mall-ebtp-cloud-core/src/main/java/org/mall/ebtp/cloud/core/Application.java b/mall-ebtp-cloud-core/src/main/java/org/mall/ebtp/cloud/core/Application.java
index 68c6343..2eebd32 100644
--- a/mall-ebtp-cloud-core/src/main/java/org/mall/ebtp/cloud/core/Application.java
+++ b/mall-ebtp-cloud-core/src/main/java/org/mall/ebtp/cloud/core/Application.java
@@ -4,10 +4,11 @@ import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
-public class Application
-{
- public static void main( String[] args )
- {
- SpringApplication.run(Application.class, args);
- }
+//@ComponentScan(excludeFilters = @ComponentScan.Filter(type = FilterType.ASPECTJ, pattern = "org.mall.ebtp.cloud.core.*"))
+public class Application {
+
+ public static void main(String[] args) {
+ SpringApplication.run(Application.class, args);
+ }
+
}