Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
matrix
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
CI / CD
CI / CD
Pipelines
Schedules
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
mall
arch
matrix
Commits
0529a43a
Commit
0529a43a
authored
May 23, 2019
by
QIANGLU
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复依赖关系
parent
ebd228d1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
85 additions
and
70 deletions
+85
-70
pom.xml
common-core/pom.xml
+3
-3
pom.xml
common-util/pom.xml
+25
-20
BeanUtil.java
common-util/src/main/java/com/secoo/mall/common/util/bean/BeanUtil.java
+0
-2
pom.xml
dubbo-starter/pom.xml
+4
-5
pom.xml
elasticsearch-starter/pom.xml
+4
-5
pom.xml
mongodb-starter/pom.xml
+4
-5
pom.xml
monitor-starter/pom.xml
+3
-3
pom.xml
mybatis-starter/pom.xml
+5
-7
pom.xml
openfeign-starter/pom.xml
+4
-5
pom.xml
pom.xml
+0
-0
pom.xml
redis-starter/pom.xml
+4
-5
pom.xml
rocketmq-starter/pom.xml
+3
-3
pom.xml
web-starter/pom.xml
+26
-5
SwaggerConfig.java
web-starter/src/main/java/com/secoo/mall/web/config/SwaggerConfig.java
+0
-2
No files found.
common-core/pom.xml
View file @
0529a43a
...
@@ -3,9 +3,9 @@
...
@@ -3,9 +3,9 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<parent>
<artifactId>
ma
ll-common
</artifactId>
<artifactId>
ma
trix
</artifactId>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<version>
1.0.2.1009
-DEV-SNAPSHOT
</version>
<version>
0.1
-DEV-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
...
common-util/pom.xml
View file @
0529a43a
...
@@ -3,19 +3,15 @@
...
@@ -3,19 +3,15 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<parent>
<artifactId>
ma
ll-common
</artifactId>
<artifactId>
ma
trix
</artifactId>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<version>
1.0.2.1009
-DEV-SNAPSHOT
</version>
<version>
0.1
-DEV-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
common-util
</artifactId>
<artifactId>
common-util
</artifactId>
<dependencies>
<dependencies>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
common-core
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<dependency>
<groupId>
commons-beanutils
</groupId>
<groupId>
commons-beanutils
</groupId>
<artifactId>
commons-beanutils
</artifactId>
<artifactId>
commons-beanutils
</artifactId>
...
@@ -24,21 +20,30 @@
...
@@ -24,21 +20,30 @@
<groupId>
commons-io
</groupId>
<groupId>
commons-io
</groupId>
<artifactId>
commons-io
</artifactId>
<artifactId>
commons-io
</artifactId>
</dependency>
</dependency>
<!-- <dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>commons-compiler</artifactId>
<version>2.7.8</version>
</dependency>
<dependency>
<dependency>
<groupId>org.codehaus.janino</groupId>
<groupId>
org.apache.commons
</groupId>
<artifactId>janino</artifactId>
<artifactId>
commons-lang3
</artifactId>
<version>2.7.8</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>javax.mail</groupId>
<groupId>
com.secoo.matrix
</groupId>
<artifactId>mail</artifactId>
<artifactId>
common-core
</artifactId>
<version>1.4.7</version>
</dependency>
</dependency>-->
<!-- <dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>commons-compiler</artifactId>
<version>2.7.8</version>
</dependency>
<dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
<version>2.7.8</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.7</version>
</dependency>-->
</dependencies>
</dependencies>
...
...
common-util/src/main/java/com/secoo/mall/common/util/bean/BeanUtil.java
View file @
0529a43a
package
com
.
secoo
.
mall
.
common
.
util
.
bean
;
package
com
.
secoo
.
mall
.
common
.
util
.
bean
;
import
com.secoo.mall.common.core.errorcode.CommonErrorCode
;
import
com.secoo.mall.common.core.exception.BusinessException
;
import
com.secoo.mall.common.util.json.FastJsonUtil
;
import
com.secoo.mall.common.util.json.FastJsonUtil
;
import
org.apache.commons.beanutils.BeanUtils
;
import
org.apache.commons.beanutils.BeanUtils
;
import
org.apache.commons.lang3.ArrayUtils
;
import
org.apache.commons.lang3.ArrayUtils
;
...
...
dubbo-starter/pom.xml
View file @
0529a43a
...
@@ -3,18 +3,17 @@
...
@@ -3,18 +3,17 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<parent>
<artifactId>
ma
ll-common
</artifactId>
<artifactId>
ma
trix
</artifactId>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<version>
1.0.2.1009
-DEV-SNAPSHOT
</version>
<version>
0.1
-DEV-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
dubbo-starter
</artifactId>
<artifactId>
dubbo-starter
</artifactId>
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<artifactId>
common-core
</artifactId>
<artifactId>
common-core
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.apache.dubbo
</groupId>
<groupId>
org.apache.dubbo
</groupId>
...
...
elasticsearch-starter/pom.xml
View file @
0529a43a
...
@@ -3,18 +3,17 @@
...
@@ -3,18 +3,17 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<parent>
<artifactId>
ma
ll-common
</artifactId>
<artifactId>
ma
trix
</artifactId>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<version>
1.0.2.1009
-DEV-SNAPSHOT
</version>
<version>
0.1
-DEV-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
elasticsearch-starter
</artifactId>
<artifactId>
elasticsearch-starter
</artifactId>
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<artifactId>
common-core
</artifactId>
<artifactId>
common-core
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
...
...
mongodb-starter/pom.xml
View file @
0529a43a
...
@@ -3,9 +3,9 @@
...
@@ -3,9 +3,9 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<parent>
<artifactId>
ma
ll-common
</artifactId>
<artifactId>
ma
trix
</artifactId>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<version>
1.0.2.1009
-DEV-SNAPSHOT
</version>
<version>
0.1
-DEV-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
@@ -13,9 +13,8 @@
...
@@ -13,9 +13,8 @@
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<artifactId>
common-core
</artifactId>
<artifactId>
common-core
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
...
...
monitor-starter/pom.xml
View file @
0529a43a
...
@@ -3,9 +3,9 @@
...
@@ -3,9 +3,9 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<parent>
<artifactId>
ma
ll-common
</artifactId>
<artifactId>
ma
trix
</artifactId>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<version>
1.0.2.1009
-DEV-SNAPSHOT
</version>
<version>
0.1
-DEV-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
...
mybatis-starter/pom.xml
View file @
0529a43a
...
@@ -3,9 +3,9 @@
...
@@ -3,9 +3,9 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<parent>
<artifactId>
ma
ll-common
</artifactId>
<artifactId>
ma
trix
</artifactId>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<version>
1.0.2.1009
-DEV-SNAPSHOT
</version>
<version>
0.1
-DEV-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
@@ -13,14 +13,12 @@
...
@@ -13,14 +13,12 @@
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<artifactId>
common-core
</artifactId>
<artifactId>
common-core
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<artifactId>
common-util
</artifactId>
<artifactId>
common-util
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.baomidou
</groupId>
<groupId>
com.baomidou
</groupId>
...
...
openfeign-starter/pom.xml
View file @
0529a43a
...
@@ -3,18 +3,17 @@
...
@@ -3,18 +3,17 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<parent>
<artifactId>
ma
ll-common
</artifactId>
<artifactId>
ma
trix
</artifactId>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<version>
1.0.2.1009
-DEV-SNAPSHOT
</version>
<version>
0.1
-DEV-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
openfeign-starter
</artifactId>
<artifactId>
openfeign-starter
</artifactId>
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<artifactId>
common-util
</artifactId>
<artifactId>
common-util
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
...
...
pom.xml
View file @
0529a43a
This diff is collapsed.
Click to expand it.
redis-starter/pom.xml
View file @
0529a43a
...
@@ -3,9 +3,9 @@
...
@@ -3,9 +3,9 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<parent>
<artifactId>
ma
ll-common
</artifactId>
<artifactId>
ma
trix
</artifactId>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<version>
1.0.2.1009
-DEV-SNAPSHOT
</version>
<version>
0.1
-DEV-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
@@ -13,9 +13,8 @@
...
@@ -13,9 +13,8 @@
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<artifactId>
common-core
</artifactId>
<artifactId>
common-core
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
...
...
rocketmq-starter/pom.xml
View file @
0529a43a
...
@@ -3,9 +3,9 @@
...
@@ -3,9 +3,9 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<parent>
<artifactId>
ma
ll-common
</artifactId>
<artifactId>
ma
trix
</artifactId>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<version>
1.0.2.1009
-DEV-SNAPSHOT
</version>
<version>
0.1
-DEV-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
...
web-starter/pom.xml
View file @
0529a43a
...
@@ -3,9 +3,9 @@
...
@@ -3,9 +3,9 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<parent>
<artifactId>
ma
ll-common
</artifactId>
<artifactId>
ma
trix
</artifactId>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<version>
1.0.2.1009
-DEV-SNAPSHOT
</version>
<version>
0.1
-DEV-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
@@ -13,13 +13,33 @@
...
@@ -13,13 +13,33 @@
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
com.secoo.ma
ll
</groupId>
<groupId>
com.secoo.ma
trix
</groupId>
<artifactId>
common-util
</artifactId>
<artifactId>
common-util
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
com.secoo.matrix
</groupId>
<artifactId>
common-core
</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
</dependency>
<!-- swagger2-->
<dependency>
<groupId>
io.springfox
</groupId>
<artifactId>
springfox-swagger2
</artifactId>
</dependency>
<dependency>
<groupId>
io.swagger
</groupId>
<artifactId>
swagger-models
</artifactId>
</dependency>
<dependency>
<groupId>
com.github.xiaoymin
</groupId>
<artifactId>
swagger-bootstrap-ui
</artifactId>
</dependency>
<dependency>
<groupId>
com.deepoove
</groupId>
<artifactId>
swagger-dubbo
</artifactId>
</dependency>
</dependencies>
</dependencies>
</project>
</project>
\ No newline at end of file
web-starter/src/main/java/com/secoo/mall/web/config/SwaggerConfig.java
View file @
0529a43a
package
com
.
secoo
.
mall
.
web
.
config
;
package
com
.
secoo
.
mall
.
web
.
config
;
import
com.github.xiaoymin.swaggerbootstrapui.annotations.EnableSwaggerBootstrapUI
;
import
com.github.xiaoymin.swaggerbootstrapui.annotations.EnableSwaggerBootstrapUI
;
import
com.secoo.mall.common.constant.CommonConstant
;
import
com.secoo.mall.web.annotation.ApiController
;
import
com.secoo.mall.web.annotation.ApiController
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Profile
;
import
springfox.documentation.builders.ApiInfoBuilder
;
import
springfox.documentation.builders.ApiInfoBuilder
;
import
springfox.documentation.builders.PathSelectors
;
import
springfox.documentation.builders.PathSelectors
;
import
springfox.documentation.builders.RequestHandlerSelectors
;
import
springfox.documentation.builders.RequestHandlerSelectors
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment