123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?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.distributed.print</groupId>
- <artifactId>distributed-print</artifactId>
- <version>3.3.1.1</version>
- <packaging>jar</packaging>
- <parent>
- <groupId>com.qmth.distributed.print.service</groupId>
- <artifactId>distributed-print-service</artifactId>
- <version>3.3.1.1</version>
- </parent>
- <dependencies>
- <!-- <dependency>-->
- <!-- <groupId>com.qmth.teachcloud.task</groupId>-->
- <!-- <artifactId>teachcloud-task</artifactId>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.qmth.distributed.print.business</groupId>
- <artifactId>distributed-print-business</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>spring-beans</artifactId>
- <groupId>org.springframework</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.qmth.teachcloud.mark</groupId>
- <artifactId>teachcloud-mark</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.teachcloud.common.api</groupId>
- <artifactId>teachcloud-common-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <version>${spring-boot.version}</version>
- </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/distributed_print</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>
|