5 Star 19 Fork 17

吕相赫 / 广告投放与检索系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.32 KB
一键复制 编辑 原始数据 按行查看 历史
吕相赫 提交于 2021-07-10 20:11 . service模块-通用模块搭建
<?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>
<groupId>com.xiang.ad</groupId>
<artifactId>xiang-ad</artifactId>
<version>1.0-SNAPSHOT</version>
<!--管理子模块-->
<modules>
<module>ad-eureka</module>
<module>ad-gateway</module>
<module>xiang-ad-service</module>
</modules>
<packaging>pom</packaging>
<name>xiang-ad-spring-cloud</name>
<description>project for ad-springcloud</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.2.RELEASE</version>
</parent>
<!-- 通用属性:这里管理springcloud版本,使用最新版本 Finchley -->
<properties>
<spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
</properties>
<!-- 通用的模块,这些模块是放在parent中的,子模块会享用 -->
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.18</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<!--依赖管理-->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!--定义远程仓库-->
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>
Java
1
https://gitee.com/moon_egg/advertising-system.git
git@gitee.com:moon_egg/advertising-system.git
moon_egg
advertising-system
广告投放与检索系统
master

搜索帮助