1 Star 0 Fork 0

wish / cloud-bootstrap

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.97 KB
一键复制 编辑 原始数据 按行查看 历史
zhongjyuan 提交于 2023-11-15 12:31 . feat:
<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>zhongjyuan.wish</groupId>
<artifactId>cloud-dependencies</artifactId>
<version>2023.02.01-SNAPSHOT</version>
</parent>
<groupId>zhongjyuan.wish.cloud</groupId>
<artifactId>bootstrap</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>bootstrap</name>
<description>深圳市君缘科技股份有限公司 - 技术支持团队 - Wish Bootstrap</description>
<url>${wish.git.protocol}://${wish.framework.git.url}/${project.artifactId}</url>
<developers>
<developer>
<id>zhongjyuan</id>
<name>JinYuan Zhong</name>
<email>zhongjyuan@outlook.com</email>
<url>http://www.zhongjyuan.com</url>
<organization>zhongjyuan</organization>
</developer>
</developers>
<scm>
<url>${wish.git.protocol}://${wish.framework.git.url}/${project.artifactId}</url>
<connection>scm:git:git://${wish.framework.git.url}/${project.artifactId}.git</connection>
<developerConnection>scm:git:ssh://git@${wish.framework.git.url}/${project.artifactId}.git</developerConnection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>zhongjyuan.wish</groupId>
<artifactId>bootstrap</artifactId>
</dependency>
<dependency>
<groupId>zhongjyuan.wish.cloud</groupId>
<artifactId>commons</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-feign -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-loadbalancer -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-config -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-discovery -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
</dependencies>
<build>
<finalName>${project.name}-${project.version}</finalName>
<resources>
<resource>
<directory>${basedir}/src/main/java</directory>
<filtering>false</filtering>
<includes>
<include>**/*.xml</include>
<include>**/*.yml</include>
<include>**/*.yaml</include>
<include>**/*.properties</include>
</includes>
</resource>
<resource>
<directory>${basedir}/src/main/resources</directory>
<includes>
<include>**</include>
</includes>
<excludes>
<exclude>**/application-*.yml</exclude>
<exclude>**/application-*.properties</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/zhongjyuan-wish/cloud-bootstrap.git
git@gitee.com:zhongjyuan-wish/cloud-bootstrap.git
zhongjyuan-wish
cloud-bootstrap
cloud-bootstrap
master

搜索帮助