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.
112 lines
3.9 KiB
112 lines
3.9 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">
|
|
<parent>
|
|
<artifactId>yshop</artifactId>
|
|
<groupId>co.yixiang</groupId>
|
|
<version>3.3</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>yshop-admin</artifactId>
|
|
<name>后台管理模块</name>
|
|
|
|
<properties>
|
|
<jjwt.version>0.10.6</jjwt.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- 代码生成模块 -->
|
|
<dependency>
|
|
<groupId>co.yixiang</groupId>
|
|
<artifactId>yshop-generator</artifactId>
|
|
<version>3.3</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>co.yixiang</groupId>
|
|
<artifactId>yshop-common</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>co.yixiang</groupId>
|
|
<artifactId>yshop-shop</artifactId>
|
|
<version>3.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<!--jwt-->
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt</artifactId>
|
|
<version>0.9.1</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>io.jsonwebtoken</groupId>-->
|
|
<!-- <artifactId>jjwt-api</artifactId>-->
|
|
<!-- <version>${jjwt.version}</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>io.jsonwebtoken</groupId>-->
|
|
<!-- <artifactId>jjwt-impl</artifactId>-->
|
|
<!-- <version>${jjwt.version}</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>io.jsonwebtoken</groupId>-->
|
|
<!-- <artifactId>jjwt-jackson</artifactId>-->
|
|
<!-- <version>${jjwt.version}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- quartz -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-quartz</artifactId>
|
|
</dependency>
|
|
<!--weixinpay-->
|
|
<dependency>
|
|
<groupId>co.yixiang</groupId>
|
|
<artifactId>yshop-weixin</artifactId>
|
|
<version>3.3</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-config</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<!-- 跳过单元测试 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<skipTests>true</skipTests>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|