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