pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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>hnls-admin</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>hnls-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.3.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.tofly</groupId>
  28. <artifactId>hnls-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. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-maven-plugin</artifactId>
  65. <executions>
  66. <execution>
  67. <goals>
  68. <goal>repackage</goal>
  69. </goals>
  70. </execution>
  71. </executions>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. </project>