pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.iocoder.boot</groupId>
  7. <artifactId>yudao-module-things</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <packaging>pom</packaging>
  11. <artifactId>fastbee-plugs</artifactId>
  12. <description>插件工具类整合</description>
  13. <modules>
  14. <module>fastbee-quartz</module>
  15. <module>fastbee-generator</module>
  16. <module>fastbee-http</module>
  17. <module>fastbee-mqtt-client</module>
  18. </modules>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-context</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.projectlombok</groupId>
  26. <artifactId>lombok</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.fastbee</groupId>
  30. <artifactId>fastbee-common</artifactId>
  31. </dependency>
  32. </dependencies>
  33. </project>