2 Star 2 Fork 1

千寻啊千寻 / qianxunclub-starter-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 3.09 KB
一键复制 编辑 原始数据 按行查看 历史
chihiro 提交于 2018-07-06 12:09 . 修改错误
<?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.qianxunclub</groupId>
<artifactId>qianxunclub-starter-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>qianxunclub-starter-demo</name>
<description>qianxunclub-starter-demo project for Spring Boot</description>
<parent>
<groupId>com.qianxunclub</groupId>
<artifactId>qianxunclub-starter-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<properties>
</properties>
<dependencies>
<!-- 自动生成接口文档 -->
<dependency>
<groupId>com.qianxunclub</groupId>
<artifactId>qianxunclub-starter-swagger</artifactId>
<version>${qianxunclub-swagger.version}</version>
</dependency>
<!-- web配置信息 -->
<dependency>
<groupId>com.qianxunclub</groupId>
<artifactId>qianxunclub-starter-web</artifactId>
<version>${qianxunclub-web.version}</version>
</dependency>
<!-- 日志配置信息 -->
<dependency>
<groupId>com.qianxunclub</groupId>
<artifactId>qianxunclub-starter-logging</artifactId>
<version>${qianxunclub-logging.version}</version>
</dependency>
<!-- MYSQL配置信息 -->
<dependency>
<groupId>com.qianxunclub</groupId>
<artifactId>qianxunclub-starter-mysql</artifactId>
<version>${qianxunclub-mysql.version}</version>
</dependency>
<!-- REDIS配置信息 -->
<!--<dependency>-->
<!--<groupId>com.qianxunclub</groupId>-->
<!--<artifactId>qianxunclub-starter-redis</artifactId>-->
<!--<version>${qianxunclub-redis.version}</version>-->
<!--</dependency>-->
<!-- SpringCloudConfig配置中心 -->
<!--<dependency>-->
<!--<groupId>com.qianxunclub</groupId>-->
<!--<artifactId>qianxunclub-starter-config</artifactId>-->
<!--<version>${qianxunclub-config.version}</version>-->
<!--</dependency>-->
</dependencies>
<repositories>
<repository>
<id>sonatype</id>
<name>sonatype</name>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.4.13</version>
<configuration>
<dockerDirectory>${project.basedir}</dockerDirectory>
<imageName>${project.artifactId}:${project.version}</imageName>
<resources>
<resource>
<targetPath>/</targetPath>
<directory>${project.build.directory}</directory>
<include>${project.build.finalName}.jar</include>
</resource>
</resources>
</configuration>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/qianxunclub/qianxunclub-starter-demo.git
git@gitee.com:qianxunclub/qianxunclub-starter-demo.git
qianxunclub
qianxunclub-starter-demo
qianxunclub-starter-demo
master

搜索帮助