pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.qmth.teachcloud.task</groupId>
  6. <artifactId>teachcloud-task</artifactId>
  7. <version>2.1.0</version>
  8. <packaging>jar</packaging>
  9. <parent>
  10. <groupId>com.qmth.distributed.print.service</groupId>
  11. <artifactId>distributed-print-service</artifactId>
  12. <version>2.1.0</version>
  13. </parent>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.qmth.distributed.print.business</groupId>
  17. <artifactId>distributed-print-business</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.qmth.teachcloud.report.business</groupId>
  21. <artifactId>teachcloud-report-business</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-quartz</artifactId>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-maven-plugin</artifactId>
  33. <version>2.6.2</version>
  34. <configuration>
  35. <includeSystemScope>true</includeSystemScope>
  36. </configuration>
  37. <!-- <executions>-->
  38. <!-- <execution>-->
  39. <!-- <goals>-->
  40. <!-- <goal>repackage</goal>-->
  41. <!-- </goals>-->
  42. <!-- </execution>-->
  43. <!-- </executions>-->
  44. </plugin>
  45. <plugin>
  46. <groupId>com.spotify</groupId>
  47. <artifactId>dockerfile-maven-plugin</artifactId>
  48. <version>1.4.12</version>
  49. <configuration>
  50. <repository>registry.cn-shenzhen.aliyuncs.com/distributed_print_task</repository>
  51. <tag>${project.version}</tag>
  52. <contextDirectory>${project.baseDir}</contextDirectory>
  53. <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
  54. <pullNewerImage>true</pullNewerImage>
  55. <buildArgs>
  56. <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
  57. </buildArgs>
  58. </configuration>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>