1 Star 0 Fork 109

你就像甜甜的益达/mateboot

forked from matevip/mateboot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.05 KB
一键复制 编辑 原始数据 按行查看 历史
matevip 提交于 2020-09-24 09:42 . 迁移component模块
<?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>vip.mate</groupId>
<artifactId>mateboot</artifactId>
<version>1.0.1</version>
<properties>
<matecloud.core.version>1.1.8</matecloud.core.version>
<java.version>1.8</java.version>
<maven.plugin.version>3.8.1</maven.plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>vip.mate</groupId>
<artifactId>mate-starter-web</artifactId>
</dependency>
<dependency>
<groupId>vip.mate</groupId>
<artifactId>mate-starter-common</artifactId>
</dependency>
<dependency>
<groupId>vip.mate</groupId>
<artifactId>mate-starter-database</artifactId>
</dependency>
<dependency>
<groupId>vip.mate</groupId>
<artifactId>mate-starter-redis</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>vip.mate</groupId>-->
<!-- <artifactId>mate-starter-jetcache</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>vip.mate</groupId>
<artifactId>mate-starter-security</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>vip.mate</groupId>
<artifactId>mate-starter-file</artifactId>
</dependency>
<dependency>
<groupId>com.github.whvcse</groupId>
<artifactId>easy-captcha</artifactId>
</dependency>
<dependency>
<groupId>vip.mate</groupId>
<artifactId>mate-starter-auth</artifactId>
</dependency>
<dependency>
<groupId>vip.mate</groupId>
<artifactId>mate-starter-oss</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>vip.mate</groupId>
<artifactId>mate-starter-dependencies</artifactId>
<version>${matecloud.core.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork><!-- 如果没有该项配置,肯呢个devtools不会起作用,即应用不会restart -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<delimiters>
<delimiter>@</delimiter>
</delimiters>
<useDefaultDelimiters>false</useDefaultDelimiters>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/webapp</directory>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
</build>
<profiles>
<profile>
<id>local</id>
<properties>
<spring.active>local</spring.active>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>dev</id>
<properties>
<spring.active>dev</spring.active>
</properties>
</profile>
<profile>
<id>test</id>
<properties>
<spring.active>test</spring.active>
</properties>
</profile>
<profile>
<id>produce</id>
<properties>
<spring.active>produce</spring.active>
</properties>
</profile>
</profiles>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/javayida/mateboot.git
git@gitee.com:javayida/mateboot.git
javayida
mateboot
mateboot
master

搜索帮助