pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <parent>
  3. <groupId>iot.wumao</groupId>
  4. <artifactId>wumao-dtu</artifactId>
  5. <version>1.0.0</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <artifactId>wumao-common</artifactId>
  9. <packaging>jar</packaging>
  10. <description>wumao-common</description>
  11. <build>
  12. <finalName>${project.artifactId}</finalName>
  13. </build>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.apache.httpcomponents</groupId>
  17. <artifactId>httpclient</artifactId>
  18. <version>4.5.10</version>
  19. </dependency>
  20. <!--json-->
  21. <dependency>
  22. <groupId>net.sf.ezmorph</groupId>
  23. <artifactId>ezmorph</artifactId>
  24. <version>1.0.6</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>net.sf.json-lib</groupId>
  28. <artifactId>json-lib</artifactId>
  29. <version>2.4</version>
  30. <classifier>jdk15</classifier>
  31. <!--<scope>system</scope>-->
  32. <!--<systemPath>${basedir}/lib/json-lib-2.4.jar</systemPath>-->
  33. </dependency>
  34. </dependencies>
  35. </project>