|
@@ -0,0 +1,69 @@
|
|
|
|
+<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
+ <groupId>com.qmth.data.docking</groupId>
|
|
|
|
+ <artifactId>data-docking</artifactId>
|
|
|
|
+ <version>2.0.2</version>
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
+
|
|
|
|
+ <parent>
|
|
|
|
+ <groupId>com.qmth.teachcloud.exchange.service</groupId>
|
|
|
|
+ <artifactId>teachcloud-exchange-service</artifactId>
|
|
|
|
+ <version>2.0.2</version>
|
|
|
|
+ </parent>
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.teachcloud.exchange.common</groupId>
|
|
|
|
+ <artifactId>teachcloud-exchange-common</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
+ <artifactId>tomcat-embed-core</artifactId>
|
|
|
|
+ <version>9.0.64</version>
|
|
|
|
+ <scope>compile</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
+ <version>2.6.2</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <includeSystemScope>true</includeSystemScope>
|
|
|
|
+ </configuration>
|
|
|
|
+ <executions>
|
|
|
|
+ <execution>
|
|
|
|
+ <goals>
|
|
|
|
+ <goal>repackage</goal>
|
|
|
|
+ </goals>
|
|
|
|
+ </execution>
|
|
|
|
+ </executions>
|
|
|
|
+ </plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>com.spotify</groupId>
|
|
|
|
+ <artifactId>dockerfile-maven-plugin</artifactId>
|
|
|
|
+ <version>1.4.12</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <repository>registry.cn-shenzhen.aliyuncs.com/data-docking</repository>
|
|
|
|
+ <tag>${project.version}</tag>
|
|
|
|
+ <contextDirectory>${project.baseDir}</contextDirectory>
|
|
|
|
+ <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
|
|
|
|
+ <pullNewerImage>true</pullNewerImage>
|
|
|
|
+ <buildArgs>
|
|
|
|
+ <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
|
|
|
|
+ </buildArgs>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+
|
|
|
|
+</project>
|