Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
data-center
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
廖鑫
data-center
Commits
8e00e3cc
Commit
8e00e3cc
authored
3 years ago
by
廖鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交基础代码
parent
463d9712
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
0 deletions
+74
-0
pom.xml
pom.xml
+74
-0
No files found.
pom.xml
0 → 100644
View file @
8e00e3cc
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
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"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
com.mortals
</groupId>
<artifactId>
mortals-common
</artifactId>
<version>
1.1.2-SNAPSHOT
</version>
</parent>
<groupId>
com.mortals.xhx
</groupId>
<artifactId>
xhx-base
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<modules>
<module>
base-manager
</module>
<module>
base-handler
</module>
<module>
common-lib
</module>
<module>
base-gate-api
</module>
<module>
base-gateway
</module>
</modules>
<properties>
<common-lib.version>
0.0.1-SNAPSHOT
</common-lib.version>
<aliyun-java-sdk-core.version>
4.5.16
</aliyun-java-sdk-core.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
com.aliyun
</groupId>
<artifactId>
aliyun-java-sdk-core
</artifactId>
<version>
${aliyun-java-sdk-core.version}
</version>
</dependency>
<dependency>
<groupId>
com.mortals.xhx
</groupId>
<artifactId>
common-lib
</artifactId>
<version>
${common-lib.version}
</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-data-redis
</artifactId>
<exclusions>
<exclusion>
<groupId>
org.springframework.data
</groupId>
<artifactId>
spring-data-redis
</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 引入 Spring Cloud Alibaba Nacos Config 相关依赖,将 Nacos 作为配置中心,并实现对其的自动配置 -->
<dependency>
<groupId>
com.alibaba.cloud
</groupId>
<artifactId>
spring-cloud-starter-alibaba-nacos-config
</artifactId>
</dependency>
<dependency>
<groupId>
com.alibaba.cloud
</groupId>
<artifactId>
spring-cloud-starter-alibaba-nacos-discovery
</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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