|
|
@@ -1,78 +0,0 @@
|
|
|
-<?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>blade-ops</artifactId>
|
|
|
- <groupId>org.springblade</groupId>
|
|
|
- <version>2.6.1.RELEASE</version>
|
|
|
- </parent>
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
-
|
|
|
- <artifactId>blade-zipkin</artifactId>
|
|
|
- <name>${project.artifactId}</name>
|
|
|
- <version>${bladex.project.version}</version>
|
|
|
- <packaging>jar</packaging>
|
|
|
-
|
|
|
- <dependencies>
|
|
|
- <!--Blade-->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springblade</groupId>
|
|
|
- <artifactId>blade-common</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springblade</groupId>
|
|
|
- <artifactId>blade-core-launch</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springblade</groupId>
|
|
|
- <artifactId>blade-core-tool</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springblade</groupId>
|
|
|
- <artifactId>blade-core-cloud</artifactId>
|
|
|
- </dependency>
|
|
|
- <!--Zipkin-->
|
|
|
- <dependency>
|
|
|
- <groupId>io.zipkin.java</groupId>
|
|
|
- <artifactId>zipkin-server</artifactId>
|
|
|
- <version>2.12.3</version>
|
|
|
- <exclusions>
|
|
|
- <exclusion>
|
|
|
- <artifactId>log4j-slf4j-impl</artifactId>
|
|
|
- <groupId>org.apache.logging.log4j</groupId>
|
|
|
- </exclusion>
|
|
|
- </exclusions>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>io.zipkin.java</groupId>
|
|
|
- <artifactId>zipkin-autoconfigure-ui</artifactId>
|
|
|
- <version>2.12.3</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>
|