pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>qhiot-app</artifactId>
  7. <groupId>com.qhiot</groupId>
  8. <version>1.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>qhiot-export</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.yaml</groupId>
  15. <artifactId>snakeyaml</artifactId>
  16. <version>1.25</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.qhiot</groupId>
  20. <artifactId>qhiot-core</artifactId>
  21. <version>1.0.1</version>
  22. <scope>compile</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.qhiot</groupId>
  26. <artifactId>qhiot-webcore</artifactId>
  27. <version>1.0.1</version>
  28. <scope>compile</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>javax</groupId>
  32. <artifactId>javaee-api</artifactId>
  33. <version>8.0.1</version>
  34. <scope>compile</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.qhiot</groupId>
  38. <artifactId>qhiot-transport-db</artifactId>
  39. <version>1.0.1</version>
  40. <scope>compile</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.qhiot</groupId>
  44. <artifactId>qhiot-cm</artifactId>
  45. <version>1.0.1</version>
  46. <scope>compile</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.qhiot</groupId>
  50. <artifactId>qhiot-infocenter</artifactId>
  51. <version>1.0.1</version>
  52. <scope>compile</scope>
  53. </dependency>
  54. </dependencies>
  55. </project>