.flattened-pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.pavis</groupId>
  7. <artifactId>pavis-extension</artifactId>
  8. <version>3.7.0</version>
  9. </parent>
  10. <artifactId>pavis-extension-schedule-server</artifactId>
  11. <version>3.7.0</version>
  12. <description>任务调度服务端</description>
  13. <licenses>
  14. <license>
  15. <name>GNU LESSER GENERAL PUBLIC LICENSE</name>
  16. <url>http://www.gnu.org/licenses/lgpl.html</url>
  17. </license>
  18. </licenses>
  19. <properties>
  20. <snail-job.version>1.4.0</snail-job.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.aizuda</groupId>
  25. <artifactId>snail-job-server-starter</artifactId>
  26. <version>${snail-job.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.liquibase</groupId>
  30. <artifactId>liquibase-core</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <finalName>${project.artifactId}</finalName>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-maven-plugin</artifactId>
  39. <executions>
  40. <execution>
  41. <goals>
  42. <goal>repackage</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. </project>