1 Star 0 Fork 0

lizhiyong/csg-parent

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 6.95 KB
一键复制 编辑 原始数据 按行查看 历史
lizhiyong 提交于 2019-12-30 14:42 . update 更新包结构
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.csg</groupId>
<artifactId>csg-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>csg-parent</name>
<description>Demo project for Spring Boot</description>
<packaging>pom</packaging>
<url>https://gitee.com/george510257/csg-parent</url>
<scm>
<url>https://gitee.com/george510257/csg-parent</url>
</scm>
<modules>
<module>csg-dependencies</module>
<module>csg-project</module>
</modules>
<properties>
<java.version>1.8</java.version>
<azure.version>2.2.0</azure.version>
<spring-boot-admin.version>2.2.0</spring-boot-admin.version>
<spring-cloud-services.version>2.1.4.RELEASE</spring-cloud-services.version>
<spring-cloud.version>Hoxton.RELEASE</spring-cloud.version>
<vaadin.version>14.0.15</vaadin.version>
<dockerfile-maven.version>1.4.13</dockerfile-maven.version>
</properties>
<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>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-spring-boot-bom</artifactId>
<version>${azure.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-dependencies</artifactId>
<version>${spring-boot-admin.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.pivotal.spring.cloud</groupId>
<artifactId>spring-cloud-services-dependencies</artifactId>
<version>${spring-cloud-services.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-bom</artifactId>
<version>${vaadin.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot.experimental</groupId>
<artifactId>spring-boot-bom-r2dbc</artifactId>
<version>0.1.0.M3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>Release Repository</name>
<!-- 引用maven settings.xml配置文件中ReleaseRepository节点的值 -->
<url>${repository.release}</url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<name>Snapshot Repository</name>
<!-- 引用maven settings.xml配置文件中SnapshotRepository节点的值 -->
<url>${repository.snapshot}</url>
</snapshotRepository>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>dockerfile-maven-plugin</artifactId>
<version>${dockerfile-maven.version}</version>
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>default</id>-->
<!-- <goals>-->
<!-- <goal>build</goal>-->
<!-- <goal>push</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- <execution>-->
<!-- <id>tag-aliyun</id>-->
<!-- <goals>-->
<!-- <goal>tag</goal>-->
<!-- <goal>push</goal>-->
<!-- </goals>-->
<!-- <configuration>-->
<!-- <repository>${docker.registry.aliyun}/${docker.image.prefix}/${project.artifactId}-->
<!-- </repository>-->
<!-- </configuration>-->
<!-- </execution>-->
<!-- <execution>-->
<!-- <id>tag-hub</id>-->
<!-- <goals>-->
<!-- <goal>tag</goal>-->
<!-- <goal>push</goal>-->
<!-- </goals>-->
<!-- <configuration>-->
<!-- <repository>${docker.registry.hub}/${docker.image.prefix}/${project.artifactId}-->
<!-- </repository>-->
<!-- </configuration>-->
<!-- </execution>-->
<!-- </executions>-->
<configuration>
<useMavenSettingsForAuth>true</useMavenSettingsForAuth>
<repository>${docker.registry.repo}/${docker.image.prefix}/${project.artifactId}</repository>
<tag>${project.version}</tag>
<buildArgs>
<JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
</buildArgs>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/george510257/csg-parent.git
[email protected]:george510257/csg-parent.git
george510257
csg-parent
csg-parent
master

搜索帮助