pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. <parent>
  6. <groupId>com.aizuda</groupId>
  7. <artifactId>snail-job</artifactId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>snail-job-server-dispatcher</artifactId>
  12. <packaging>pom</packaging>
  13. <name>snail-job-server-dispatcher</name>
  14. <description>snail-job-server-dispatcher</description>
  15. <modules>
  16. <module>snail-job-server-common</module>
  17. <module>snail-job-server-retry-task</module>
  18. <module>snail-job-server-job-task</module>
  19. </modules>
  20. <dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.aizuda</groupId>
  24. <artifactId>snail-job-server-common</artifactId>
  25. <version>${revision}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.aizuda</groupId>
  29. <artifactId>snail-job-server-web</artifactId>
  30. <version>${revision}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.aizuda</groupId>
  34. <artifactId>snail-job-server-retry-task</artifactId>
  35. <version>${revision}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.aizuda</groupId>
  39. <artifactId>snail-job-server-job-task</artifactId>
  40. <version>${revision}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.aizuda</groupId>
  44. <artifactId>snail-job-server-ui</artifactId>
  45. <version>${revision}</version>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-compiler-plugin</artifactId>
  54. <configuration>
  55. <source>${maven.compiler.source}</source>
  56. <target>${maven.compiler.target}</target>
  57. </configuration>
  58. </plugin>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-surefire-plugin</artifactId>
  62. <configuration>
  63. <skipTests>true</skipTests>
  64. </configuration>
  65. </plugin>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. <executions>
  70. <execution>
  71. <goals>
  72. <goal>repackage</goal>
  73. </goals>
  74. </execution>
  75. </executions>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>