mirror of https://gitee.com/stylefeng/guns
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160 lines
5.2 KiB
160 lines
5.2 KiB
<?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>3.3.2</version> |
|
</parent> |
|
|
|
<groupId>com.javaguns.guns</groupId> |
|
<artifactId>guns</artifactId> |
|
<version>8.3.0</version> |
|
|
|
<name>guns</name> |
|
<description>Guns主项目</description> |
|
|
|
<packaging>jar</packaging> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
<java.version>17</java.version> |
|
<mysql-connector-java.version>8.0.33</mysql-connector-java.version> |
|
<roses.kernel.version>8.3.0</roses.kernel.version> |
|
<flyway.version>7.1.1</flyway.version> |
|
</properties> |
|
|
|
<dependencies> |
|
|
|
<!--系统管理基础业务--> |
|
<dependency> |
|
<groupId>com.javaguns.roses</groupId> |
|
<artifactId>system-spring-boot-starter</artifactId> |
|
<version>${roses.kernel.version}</version> |
|
</dependency> |
|
|
|
<!--缓存,默认增加内存缓存--> |
|
<dependency> |
|
<groupId>com.javaguns.roses</groupId> |
|
<artifactId>cache-spring-boot-starter-memory</artifactId> |
|
<version>${roses.kernel.version}</version> |
|
</dependency> |
|
|
|
<!--数据库驱动,可根据自己需要自行删减--> |
|
<dependency> |
|
<groupId>mysql</groupId> |
|
<artifactId>mysql-connector-java</artifactId> |
|
<version>${mysql-connector-java.version}</version> |
|
</dependency> |
|
|
|
<!--测试--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<!--Properties自动扫描--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-configuration-processor</artifactId> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<finalName>guns</finalName> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>repackage</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<configuration> |
|
<excludes> |
|
<exclude> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
</exclude> |
|
</excludes> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.13.0</version> |
|
<configuration> |
|
<release>17</release> |
|
<source>17</source> |
|
<target>17</target> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-source-plugin</artifactId> |
|
<version>3.3.1</version> |
|
<configuration> |
|
<attach>true</attach> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>attach-sources</id> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
<resources> |
|
<resource> |
|
<directory>src/main/webapp</directory> |
|
<filtering>false</filtering> |
|
</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>prod</id> |
|
<properties> |
|
<spring.active>prod</spring.active> |
|
</properties> |
|
</profile> |
|
</profiles> |
|
|
|
</project>
|
|
|