pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. <parent>
  6. <groupId>com.tofly</groupId>
  7. <artifactId>zgsw-admin</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>zgsw-admin-service</artifactId>
  13. <version>1.0.0</version>
  14. <dependencies>
  15. <!-- xxl-job -->
  16. <dependency>
  17. <groupId>com.tofly</groupId>
  18. <artifactId>common-entity</artifactId>
  19. <version>1.0.3</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.xuxueli</groupId>
  23. <artifactId>xxl-job-core</artifactId>
  24. <version>2.2.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.tofly</groupId>
  28. <artifactId>zgsw-admin-api</artifactId>
  29. <version>1.0.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.httpcomponents</groupId>
  33. <artifactId>httpclient</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.thymeleaf</groupId>
  37. <artifactId>thymeleaf-spring5</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.tofly</groupId>
  41. <artifactId>common-ftp</artifactId>
  42. <version>1.0.3</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.tofly</groupId>
  46. <artifactId>common-redis</artifactId>
  47. <version>1.0.3</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.tofly</groupId>
  51. <artifactId>common-log</artifactId>
  52. <version>1.0.3</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.baomidou</groupId>
  56. <artifactId>mybatis-plus-boot-starter</artifactId>
  57. <version>3.3.2</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.google.code.gson</groupId>
  61. <artifactId>gson</artifactId>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <plugins>
  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>