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.
140 lines
5.1 KiB
140 lines
5.1 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"> |
|
|
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<parent> |
|
<artifactId>BladeX</artifactId> |
|
<groupId>org.springblade</groupId> |
|
<version>2.8.0.RELEASE</version> |
|
</parent> |
|
|
|
<artifactId>blade-auth</artifactId> |
|
<name>${project.artifactId}</name> |
|
<version>${bladex.project.version}</version> |
|
<packaging>jar</packaging> |
|
|
|
<dependencies> |
|
<!--Blade--> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-common</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-scope-api</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-core-db</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-core-cloud</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-starter-metrics</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-starter-redis</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-starter-swagger</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-starter-social</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-user-api</artifactId> |
|
<version>${bladex.project.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-system-api</artifactId> |
|
<version>${bladex.project.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-security</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security.oauth</groupId> |
|
<artifactId>spring-security-oauth2</artifactId> |
|
<version>2.3.5.RELEASE</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-data-redis</artifactId> |
|
<version>2.2.0.RELEASE</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-jwt</artifactId> |
|
</dependency> |
|
<!-- 验证码 --> |
|
<dependency> |
|
<groupId>com.github.whvcse</groupId> |
|
<artifactId>easy-captcha</artifactId> |
|
</dependency> |
|
<!-- 链路追踪、服务监控 --> |
|
<!--<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-starter-trace</artifactId> |
|
</dependency>--> |
|
<!-- 解决Java11无法运行的问题 --> |
|
<!--<dependency> |
|
<groupId>javax.xml.bind</groupId> |
|
<artifactId>jaxb-api</artifactId> |
|
<version>2.2.11</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sun.xml.bind</groupId> |
|
<artifactId>jaxb-core</artifactId> |
|
<version>2.2.11</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sun.xml.bind</groupId> |
|
<artifactId>jaxb-impl</artifactId> |
|
<version>2.2.11</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.activation</groupId> |
|
<artifactId>activation</artifactId> |
|
<version>1.1.1</version> |
|
</dependency>--> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>com.spotify</groupId> |
|
<artifactId>dockerfile-maven-plugin</artifactId> |
|
<configuration> |
|
<username>${docker.username}</username> |
|
<password>${docker.password}</password> |
|
<repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> |
|
<tag>${project.version}</tag> |
|
<useMavenSettingsForAuth>true</useMavenSettingsForAuth> |
|
<buildArgs> |
|
<JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> |
|
</buildArgs> |
|
<skip>false</skip> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-antrun-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|