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.
130 lines
4.8 KiB
130 lines
4.8 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>main</artifactId> |
|
<groupId>com.hnac.hzims</groupId> |
|
<version>2.5.1.RELEASE</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>blade-gateway</artifactId> |
|
<name>${project.artifactId}</name> |
|
<version>${bladex.project.version}</version> |
|
<packaging>jar</packaging> |
|
|
|
<dependencies> |
|
<!--Blade--> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-core-launch</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-undertow</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.hnac.hzims</groupId> |
|
<artifactId>hzims-biz-common</artifactId> |
|
<version>2.5.1.RELEASE</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-core-launch</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-starter-ribbon</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-starter-jwt</artifactId> |
|
</dependency> |
|
<!--Spring--> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-gateway</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-data-redis-reactive</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>de.codecentric</groupId> |
|
<artifactId>spring-boot-admin-starter-client</artifactId> |
|
</dependency> |
|
<!--Hystrix--> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<!-- Nacos --> |
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
|
</dependency> |
|
<!--Swagger--> |
|
<dependency> |
|
<groupId>io.springfox</groupId> |
|
<artifactId>springfox-swagger2</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>io.swagger</groupId> |
|
<artifactId>swagger-models</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.swagger</groupId> |
|
<artifactId>swagger-models</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.github.xiaoymin</groupId> |
|
<artifactId>knife4j-spring-ui</artifactId> |
|
</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>
|
|
|