pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.aizuda</groupId>
  8. <artifactId>snail-job</artifactId>
  9. <version>${revision}</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>snail-job-server-starter</artifactId>
  13. <name>snail-job-server-starter</name>
  14. <description>snail-job-server-starter</description>
  15. <packaging>jar</packaging>
  16. <dependencies>
  17. <!-- preprocessor -->
  18. <dependency>
  19. <groupId>org.projectlombok</groupId>
  20. <artifactId>lombok</artifactId>
  21. </dependency>
  22. <!-- springboot -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-configuration-processor</artifactId>
  30. <optional>true</optional>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-test</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <!-- libs -->
  38. <dependency>
  39. <groupId>org.mybatis</groupId>
  40. <artifactId>mybatis-spring</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>io.netty</groupId>
  44. <artifactId>netty-all</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>junit</groupId>
  48. <artifactId>junit</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.rholder</groupId>
  53. <artifactId>guava-retrying</artifactId>
  54. <exclusions>
  55. <exclusion>
  56. <artifactId>jsr305</artifactId>
  57. <groupId>com.google.code.findbugs</groupId>
  58. </exclusion>
  59. <exclusion>
  60. <artifactId>error_prone_annotations</artifactId>
  61. <groupId>com.google.errorprone</groupId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. <!-- SnailJob -->
  66. <dependency>
  67. <groupId>com.aizuda</groupId>
  68. <artifactId>snail-job-server-web</artifactId>
  69. <exclusions>
  70. <exclusion>
  71. <artifactId>mybatis-spring</artifactId>
  72. <groupId>org.mybatis</groupId>
  73. </exclusion>
  74. <exclusion>
  75. <artifactId>checker-qual</artifactId>
  76. <groupId>org.checkerframework</groupId>
  77. </exclusion>
  78. <exclusion>
  79. <artifactId>error_prone_annotations</artifactId>
  80. <groupId>com.google.errorprone</groupId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.aizuda</groupId>
  86. <artifactId>snail-job-server-retry-task</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.aizuda</groupId>
  90. <artifactId>snail-job-server-job-task</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.aizuda</groupId>
  94. <artifactId>snail-job-server-common</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.aizuda</groupId>
  98. <artifactId>snail-job-server-ui</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.aizuda</groupId>
  102. <artifactId>snail-job-server-openapi</artifactId>
  103. </dependency>
  104. </dependencies>
  105. <build>
  106. <finalName>snail-job-server</finalName>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-maven-plugin</artifactId>
  111. <configuration>
  112. <mainClass>com.aizuda.snailjob.server.SnailJobServerApplication</mainClass>
  113. <classifier>exec</classifier>
  114. </configuration>
  115. <executions>
  116. <execution>
  117. <goals>
  118. <goal>build-info</goal>
  119. <goal>repackage</goal>
  120. </goals>
  121. </execution>
  122. </executions>
  123. </plugin>
  124. </plugins>
  125. </build>
  126. </project>