代码拉取完成,页面将自动刷新
同步操作将从 stylefeng/Guns 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?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>2.4.2</version>
</parent>
<groupId>cn.stylefeng</groupId>
<artifactId>guns</artifactId>
<version>7.3.1</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>1.8</java.version>
<mysql-connector-java.version>8.0.21</mysql-connector-java.version>
<roses.kernel.version>7.3.1</roses.kernel.version>
<docker.img.version>latest</docker.img.version>
</properties>
<dependencies>
<!--认证和鉴权模块-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>auth-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--安全模块-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>security-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--系统配置-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>config-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--数据源连接和dao框架-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>db-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--文件管理-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>file-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--资源扫描-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>scanner-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--pinyin工具类-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>pinyin-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--字典业务-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>dict-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--参数校验模块-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>validator-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--系统管理基础业务-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>system-integration-rest</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--c端用户-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>customer-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--办公处理-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>office-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--日志模块-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>log-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--定时任务-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>timer-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--短信模块-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>sms-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--消息通知-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>message-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--数据备份和迁移模块-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>migration-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--Socket模块-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>socket-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--wrapper工具-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>wrapper-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--多语言模块-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>i18n-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--多数据源配置-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>ds-container-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--硬件信息获取-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>monitor-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--演示环境api-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>demo-api</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--默认增加内存缓存-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>memory-cache-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
</dependency>
<!--演示环境的业务,可选依赖-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>demo-spring-boot-starter</artifactId>
<version>${roses.kernel.version}</version>
<scope>provided</scope>
</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>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</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>
<!-- 如果没有该项配置,则devtools不会起作用,即应用不会restart -->
<fork>true</fork>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。