2021-11-04 10:52:21 +08:00
|
|
|
|
<?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 https://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.5.4</version>
|
|
|
|
|
<relativePath/>
|
|
|
|
|
</parent>
|
|
|
|
|
<groupId>cn.com.tenlion</groupId>
|
|
|
|
|
<artifactId>case</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<name>case</name>
|
|
|
|
|
<description>Demo project for Spring Boot</description>
|
|
|
|
|
<properties>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<spring-mybatis.version>2.1.4</spring-mybatis.version>
|
|
|
|
|
<mysql.version>8.0.22</mysql.version>
|
|
|
|
|
<druid.version>1.1.9</druid.version>
|
|
|
|
|
</properties>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<version>${mysql.version}</version>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${spring-mybatis.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${druid.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- wgink start -->
|
|
|
|
|
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<!-- <dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
|
|
|
|
<artifactId>service-group</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
|
|
|
|
<artifactId>service-position</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
|
|
|
|
<artifactId>service-role</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<groupId>ink.wgink</groupId>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<artifactId>login-base</artifactId>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<dependency>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<groupId>ink.wgink</groupId>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<artifactId>login-app</artifactId>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
-->
|
|
|
|
|
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<artifactId>basic-app</artifactId>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<artifactId>module-activiti</artifactId>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<dependency>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<groupId>ink.wgink</groupId>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<artifactId>module-file</artifactId>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<artifactId>login-oauth2-client</artifactId>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<artifactId>module-dictionary</artifactId>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<artifactId>mongo-module-dictionary</artifactId>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<!-- mongodb start -->
|
2023-05-27 17:52:09 +08:00
|
|
|
|
<dependency>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
</dependency>
|
2021-12-16 11:29:07 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
|
|
|
|
<artifactId>mongo-module-file</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<!-- mongodb end -->
|
2021-11-04 10:52:21 +08:00
|
|
|
|
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<!-- redis start -->
|
2023-05-27 17:52:09 +08:00
|
|
|
|
<!-- 占时注释掉 <dependency>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
2023-05-27 17:52:09 +08:00
|
|
|
|
</dependency>-->
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<!-- redis end -->
|
|
|
|
|
|
|
|
|
|
<!-- session share start -->
|
2023-05-27 17:52:09 +08:00
|
|
|
|
<!-- 占时注释掉 <dependency>
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
|
|
<artifactId>spring-session-data-redis</artifactId>
|
2023-05-27 17:52:09 +08:00
|
|
|
|
</dependency>-->
|
2021-11-30 16:17:22 +08:00
|
|
|
|
<!-- session share end -->
|
2021-11-04 10:52:21 +08:00
|
|
|
|
|
2021-12-24 16:41:54 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.kafka</groupId>
|
|
|
|
|
<artifactId>spring-kafka</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
<version>2.8.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
2022-05-27 17:41:09 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.com.tenlion</groupId>
|
|
|
|
|
<artifactId>inspur-msb-h5-auth</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-11-04 10:52:21 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2023-06-12 15:23:08 +08:00
|
|
|
|
<!-- 打包时去除第三方依赖 -->
|
2021-11-04 10:52:21 +08:00
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2023-06-12 15:23:08 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
<layout>ZIP</layout>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>
|
|
|
|
|
<groupId>non-exists</groupId>
|
|
|
|
|
<artifactId>non-exists</artifactId>
|
|
|
|
|
</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- 拷贝第三方依赖文件到指定目录 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<!-- target/lib 是依赖jar包的输出目录,根据自己喜好配置 -->
|
|
|
|
|
<outputDirectory>target/lib</outputDirectory>
|
|
|
|
|
<excludeTransitive>false</excludeTransitive>
|
|
|
|
|
<stripVersion>false</stripVersion>
|
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- 排除静态资源,静态资源自行拷贝 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/*.properties</exclude>
|
|
|
|
|
<exclude>**/*.xml</exclude>
|
|
|
|
|
<exclude>**/*.yml</exclude>
|
|
|
|
|
<exclude>static/**</exclude>
|
|
|
|
|
<exclude>templates/**</exclude>
|
|
|
|
|
<exclude>mybatis/**</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
2021-11-04 10:52:21 +08:00
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|