Bonus-Cloud/bonus-auth/pom.xml

107 lines
3.4 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.7.1-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 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
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>
<version>3.0.2</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-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>