Bonus-Cloud/bonus-auth/pom.xml

134 lines
4.2 KiB
XML
Raw Normal View History

2024-06-04 14:16:31 +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>
2024-06-04 14:16:31 +08:00
</parent>
<modelVersion>4.0.0</modelVersion>
2024-06-27 09:41:59 +08:00
2024-06-04 14:16:31 +08:00
<artifactId>bonus-auth</artifactId>
2024-06-27 09:41:59 +08:00
2024-06-04 14:16:31 +08:00
<description>
bonus-auth认证授权中心
</description>
2024-06-27 09:41:59 +08:00
2024-06-04 14:16:31 +08:00
<dependencies>
2024-06-27 09:41:59 +08:00
2024-06-04 14:16:31 +08:00
<!-- SpringCloud Alibaba Nacos -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
2024-06-27 09:41:59 +08:00
2024-06-04 14:16:31 +08:00
<!-- SpringCloud Alibaba Nacos Config -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
2024-06-27 09:41:59 +08:00
2024-06-04 14:16:31 +08:00
<!-- SpringCloud Alibaba Sentinel -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
2024-06-27 09:41:59 +08:00
2024-06-04 14:16:31 +08:00
<!-- SpringBoot Web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
2024-06-27 09:41:59 +08:00
2024-06-04 14:16:31 +08:00
<!-- SpringBoot Actuator -->
2025-02-10 16:30:59 +08:00
2024-06-27 09:41:59 +08:00
2024-06-04 14:16:31 +08:00
<!-- bonus Common Security-->
<dependency>
<groupId>com.bonus</groupId>
<artifactId>bonus-common-security</artifactId>
</dependency>
<!--加密依赖包-->
<dependency>
<groupId>com.github.ulisesbocchio</groupId>
<artifactId>jasypt-spring-boot-starter</artifactId>
2024-09-09 11:29:24 +08:00
<version>${jasypt-spring-boot-starter.version}</version>
</dependency>
2024-07-17 16:21:40 +08:00
<dependency>
<groupId>com.bonus</groupId>
<artifactId>bonus-common-log</artifactId>
</dependency>
2024-07-17 20:18:11 +08:00
<!-- Swagger UI -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${swagger.fox.version}</version>
</dependency>
<!-- bonus Common Swagger -->
<dependency>
<groupId>com.bonus</groupId>
<artifactId>bonus-common-swagger</artifactId>
</dependency>
2024-07-22 15:31:52 +08:00
<dependency>
<groupId>com.hankcs</groupId>
<artifactId>hanlp</artifactId>
<version>portable-1.7.8</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
2024-10-29 14:17:22 +08:00
<dependency>
<groupId>com.bonus</groupId>
<artifactId>bonus-common-config</artifactId>
<version>24.12.0-SNAPSHOT</version>
2024-10-29 14:17:22 +08:00
<scope>compile</scope>
</dependency>
2024-11-11 09:50:05 +08:00
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.2.23</version>
<scope>compile</scope>
</dependency>
2024-07-22 15:31:52 +08:00
2024-06-04 14:16:31 +08:00
</dependencies>
2024-06-27 09:41:59 +08:00
2024-06-04 14:16:31 +08:00
<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>
2024-06-27 09:41:59 +08:00
<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>
2024-06-04 14:16:31 +08:00
</project>