2 Star 9 Fork 3

wlin/spring-cloud-docker-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.20 KB
一键复制 编辑 原始数据 按行查看 历史
wlin 提交于 2018-09-27 17:16 . init
<?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>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
</parent>
<groupId>me.wlin.cloud</groupId>
<artifactId>spring-cloud-docker</artifactId>
<packaging>pom</packaging>
<version>${version}</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<spring-cloud.version>Dalston.SR3</spring-cloud.version>
<version>1.0-SNAPSHOT</version>
<docker.registryServerId>230-5000</docker.registryServerId>
<docker.registryHost>10.20.26.230:5000</docker.registryHost>
<docker.registryUrl>http://${docker.registryHost}/v2</docker.registryUrl>
</properties>
<modules>
<module>eureka-server</module>
<module>config-server</module>
<module>hello-service</module>
<module>hello-client</module>
</modules>
<distributionManagement>
<repository>
<id>releases</id>
<name>Releases</name>
<url>http://10.71.3.250:8081/nexus/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Snapshots</name>
<url>http://10.71.3.250:8081/nexus/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/hwlin/spring-cloud-docker-demo.git
git@gitee.com:hwlin/spring-cloud-docker-demo.git
hwlin
spring-cloud-docker-demo
spring-cloud-docker-demo
master

搜索帮助