2025-02-03 21:00:07 +08:00
|
|
|
<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>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus</artifactId>
|
|
|
|
|
<version>24.12.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>bonus-cust-auth</artifactId>
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
bonus-cust-auth认证授权中心
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!--加密依赖包-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
|
|
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${jasypt-spring-boot-starter.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- SpringCloud Alibaba Nacos -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringCloud Alibaba Sentinel -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringBoot Web -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringBoot Actuator -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Swagger UI -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
<version>${swagger.fox.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Mysql Connector -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- bonus Common DataSource -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-common-datasource</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- bonus Common DataScope -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-common-datascope</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- bonus Common Log -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-common-log</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- bonus Common Swagger -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-common-swagger</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hankcs</groupId>
|
|
|
|
|
<artifactId>hanlp</artifactId>
|
|
|
|
|
<version>portable-1.7.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
<version>30.0-jre</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-common-biz</artifactId>
|
|
|
|
|
<version>24.12.0-SNAPSHOT</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Apache POI dependencies -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
<version>5.2.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 支付宝支付-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alipay.sdk</groupId>
|
|
|
|
|
<artifactId>alipay-sdk-java</artifactId>
|
|
|
|
|
<version>4.34.0.ALL</version>
|
|
|
|
|
</dependency>
|
2025-02-12 09:21:02 +08:00
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>com.baomidou</groupId>-->
|
|
|
|
|
<!-- <artifactId>mybatis-plus-extension</artifactId>-->
|
|
|
|
|
<!-- <version>3.5.6</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
2025-02-05 16:59:54 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
2025-02-12 09:21:02 +08:00
|
|
|
<version>3.5.1</version>
|
2025-02-05 16:59:54 +08:00
|
|
|
</dependency>
|
2025-02-03 21:00:07 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>bns-releases</id>
|
|
|
|
|
<url>http://192.168.0.56:8081/repository/maven-releases/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>bns-snapshots</id>
|
|
|
|
|
<url>http://192.168.0.56:8081/repository/maven-snapshots/</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
|
|
</project>
|