pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829
  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>com.middle.platform</groupId>
  7. <artifactId>iot-module-upgrade</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <artifactId>iot-module-upgrade-api</artifactId>
  11. <packaging>jar</packaging>
  12. <properties>
  13. <maven.compiler.source>17</maven.compiler.source>
  14. <maven.compiler.target>17</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.middle.platform</groupId>
  20. <artifactId>iot-starter-feign</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.middle.platform</groupId>
  24. <artifactId>iot-common-core</artifactId>
  25. </dependency>
  26. </dependencies>
  27. </project>