pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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>tofly-xrty</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>pom</packaging>
  12. <artifactId>xrty-admin</artifactId>
  13. <modules>
  14. <module>base-service</module>
  15. <module>base-api</module>
  16. </modules>
  17. <properties>
  18. <maven.compiler.source>8</maven.compiler.source>
  19. <maven.compiler.target>8</maven.compiler.target>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.apache.httpcomponents</groupId>
  24. <artifactId>httpclient</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.thymeleaf</groupId>
  28. <artifactId>thymeleaf-spring5</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.tofly</groupId>
  32. <artifactId>common-ftp</artifactId>
  33. <version>1.0.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.tofly</groupId>
  37. <artifactId>common-redis</artifactId>
  38. <version>1.0.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.baomidou</groupId>
  42. <artifactId>mybatis-plus-boot-starter</artifactId>
  43. <version>3.3.2</version>
  44. </dependency>
  45. </dependencies>
  46. </project>