pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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-server-interface</artifactId>
  9. <version>${revision}</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>snail-job-server-web</artifactId>
  13. <name>snail-job-server-web</name>
  14. <description>snail-job-server-web</description>
  15. <packaging>jar</packaging>
  16. <dependencies>
  17. <!-- preprocessor -->
  18. <dependency>
  19. <groupId>org.projectlombok</groupId>
  20. <artifactId>lombok</artifactId> <!-- !!! lombok goes BEFORE mapstruct -->
  21. </dependency>
  22. <dependency>
  23. <groupId>org.mapstruct</groupId>
  24. <artifactId>mapstruct</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.mapstruct</groupId>
  28. <artifactId>mapstruct-processor</artifactId>
  29. </dependency>
  30. <!-- springboot -->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-validation</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-websocket</artifactId>
  42. </dependency>
  43. <!-- libs -->
  44. <dependency>
  45. <groupId>com.auth0</groupId>
  46. <artifactId>java-jwt</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>cn.hutool</groupId>
  50. <artifactId>hutool-crypto</artifactId>
  51. </dependency>
  52. <!-- SnailJOb -->
  53. <dependency>
  54. <groupId>com.aizuda</groupId>
  55. <artifactId>snail-job-server-common</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.aizuda</groupId>
  59. <artifactId>snail-job-datasource-template</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.aizuda</groupId>
  63. <artifactId>snail-job-mysql-datasource</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.aizuda</groupId>
  67. <artifactId>snail-job-postgres-datasource</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.aizuda</groupId>
  71. <artifactId>snail-job-mariadb-datasource</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.aizuda</groupId>
  75. <artifactId>snail-job-oracle-datasource</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.aizuda</groupId>
  79. <artifactId>snail-job-sqlserver-datasource</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.aizuda</groupId>
  83. <artifactId>snail-job-dm8-datasource</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.aizuda</groupId>
  87. <artifactId>snail-job-kingbase-datasource</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.aizuda</groupId>
  91. <artifactId>snail-job-server-retry-task</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.aizuda</groupId>
  95. <artifactId>snail-job-server-job-task</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.aizuda</groupId>
  99. <artifactId>snail-job-server-service</artifactId>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. <configuration>
  108. <mainClass>none</mainClass> <!-- 取消查找本项目下的Main方法:为了解决Unable to find main class的问题 -->
  109. <classifier>execute</classifier> <!-- 为了解决依赖模块找不到此模块中的类或属性 -->
  110. </configuration>
  111. <executions>
  112. <execution>
  113. <goals>
  114. <goal>repackage</goal>
  115. </goals>
  116. </execution>
  117. </executions>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </project>