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.
224 lines
8.0 KiB
224 lines
8.0 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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>com.mh</groupId> |
|
<artifactId>chws</artifactId> |
|
<version>1.0-SNAPSHOT</version> |
|
</parent> |
|
<groupId>com.mh</groupId> |
|
<artifactId>user-service</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
<name>user-service</name> |
|
<packaging>jar</packaging> |
|
<description>Demo project for Spring Boot</description> |
|
|
|
<properties> |
|
<java.version>1.8</java.version> |
|
<spring-cloud.version>Hoxton.SR3</spring-cloud.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-tomcat</artifactId> |
|
<scope>import</scope> |
|
<!-- <scope>provided</scope>--> |
|
<!-- 当时本地启动需要注释掉--> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-quartz</artifactId> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-config --> |
|
<!-- <dependency>--> |
|
<!-- <groupId>org.springframework.cloud</groupId>--> |
|
<!-- <artifactId>spring-cloud-starter-config</artifactId>--> |
|
<!-- <version>2.2.2.RELEASE</version>--> |
|
<!-- </dependency>--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.junit.vintage</groupId> |
|
<artifactId>junit-vintage-engine</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<!-- mybatis配置--> |
|
<dependency> |
|
<groupId>org.mybatis.spring.boot</groupId> |
|
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
<version>2.3.0</version> |
|
</dependency> |
|
<!-- druid配置--> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>druid-spring-boot-starter</artifactId> |
|
<version>1.1.18</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.microsoft.sqlserver</groupId> |
|
<artifactId>mssql-jdbc</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<!-- 登录验证码--> |
|
<dependency> |
|
<groupId>com.github.penggle</groupId> |
|
<artifactId>kaptcha</artifactId> |
|
<version>2.3.2</version> |
|
</dependency> |
|
<!-- spring security安全验证--> |
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-security</artifactId> |
|
</dependency> |
|
|
|
<!-- jwt(json web token)验证--> |
|
<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt --> |
|
<dependency> |
|
<groupId>io.jsonwebtoken</groupId> |
|
<artifactId>jjwt</artifactId> |
|
<version>0.9.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.mh</groupId> |
|
<artifactId>common</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.springfox</groupId> |
|
<artifactId>springfox-swagger2</artifactId> |
|
<version>${swagger.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.springfox</groupId> |
|
<artifactId>springfox-swagger-ui</artifactId> |
|
<version>${swagger.version}</version> |
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-aop --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-aop</artifactId> |
|
<version>2.2.5.RELEASE</version> |
|
</dependency> |
|
<!-- Lombok--> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>tk.mybatis</groupId> |
|
<artifactId>mapper</artifactId> |
|
<version>3.3.9</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-pool2</artifactId> |
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine --> |
|
<dependency> |
|
<groupId>com.github.ben-manes.caffeine</groupId> |
|
<artifactId>caffeine</artifactId> |
|
<version>2.8.8</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-collections4</artifactId> |
|
<version>4.4</version> |
|
</dependency> |
|
|
|
<!--解决高版本JDK问题--> |
|
<!--javax.xml.bind.DatatypeConverter错误--> |
|
<dependency> |
|
<groupId>javax.xml.bind</groupId> |
|
<artifactId>jaxb-api</artifactId> |
|
<version>2.3.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sun.xml.bind</groupId> |
|
<artifactId>jaxb-impl</artifactId> |
|
<version>2.3.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sun.xml.bind</groupId> |
|
<artifactId>jaxb-core</artifactId> |
|
<version>2.3.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.activation</groupId> |
|
<artifactId>activation</artifactId> |
|
<version>1.1.1</version> |
|
</dependency> |
|
|
|
<!-- 算法包 --> |
|
<dependency> |
|
<groupId>com.mh</groupId> |
|
<artifactId>algorithm</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
|
|
</dependencies> |
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-dependencies</artifactId> |
|
<version>${spring-cloud.version}</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
|
|
<build> |
|
<!-- 打包时拷贝MyBatis的映射文件 --> |
|
<resources> |
|
<resource> |
|
<directory>src/main/java</directory> |
|
<includes> |
|
<include>**/sqlmapper/*.xml</include> |
|
</includes> |
|
<filtering>false</filtering> |
|
</resource> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<includes> |
|
<include>**/*.*</include> |
|
</includes> |
|
<filtering>true</filtering> |
|
</resource> |
|
</resources> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<version>2.7.2</version> |
|
</plugin> |
|
<!-- <plugin>--> |
|
<!-- <groupId>org.apache.maven.plugins</groupId>--> |
|
<!-- <artifactId>maven-resources-plugin</artifactId>--> |
|
<!-- <version>3.1.0</version>--> |
|
<!-- <configuration>--> |
|
<!-- <encoding>UTF-8</encoding>--> |
|
<!-- </configuration>--> |
|
<!-- </plugin>--> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|