pom.xml 758 B

123456789101112131415161718192021222324
  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. <artifactId>nb-root</artifactId>
  7. <groupId>com.tuoren</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>nb-service-api</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>web-service-api</module>
  15. <module>iot-service-api</module>
  16. <module>app-doctor-api</module>
  17. <module>app-assistant-api</module>
  18. <module>app-msg-api</module>
  19. </modules>
  20. </project>