pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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>lxps-base-admin</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>lxps-base-service</artifactId>
  13. <dependencies>
  14. <!-- xxl-job -->
  15. <dependency>
  16. <groupId>com.xuxueli</groupId>
  17. <artifactId>xxl-job-core</artifactId>
  18. <version>2.2.0</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.tofly</groupId>
  22. <artifactId>lxps-base-api</artifactId>
  23. <version>1.0.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.httpcomponents</groupId>
  27. <artifactId>httpclient</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.thymeleaf</groupId>
  31. <artifactId>thymeleaf-spring5</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.tofly</groupId>
  35. <artifactId>common-redis</artifactId>
  36. <version>1.0.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <version>3.3.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.tofly</groupId>
  45. <artifactId>common-orm-mybatisplus</artifactId>
  46. <version>1.0.4</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.jcraft</groupId>
  50. <artifactId>jsch</artifactId>
  51. <version>0.1.55</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>ch.ethz.ganymed</groupId>
  55. <artifactId>ganymed-ssh2</artifactId>
  56. <version>262</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>commons-net</groupId>
  60. <artifactId>commons-net</artifactId>
  61. <version>3.6</version>
  62. <scope>compile</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.samba.jcifs</groupId>
  66. <artifactId>jcifs</artifactId>
  67. <version>1.3.3</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.tofly</groupId>
  71. <artifactId>common-core</artifactId>
  72. <version>1.0.0</version>
  73. <scope>compile</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>io.minio</groupId>
  77. <artifactId>minio</artifactId>
  78. <version>8.0.0</version>
  79. </dependency>
  80. </dependencies>
  81. <build>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-maven-plugin</artifactId>
  86. <executions>
  87. <execution>
  88. <goals>
  89. <goal>repackage</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>