123456789101112131415161718192021222324252627282930313233343536373839 |
- <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">
- <parent>
- <groupId>iot.wumao</groupId>
- <artifactId>wumao-dtu</artifactId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>wumao-common</artifactId>
- <packaging>jar</packaging>
- <description>wumao-common</description>
- <build>
- <finalName>${project.artifactId}</finalName>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.5.10</version>
- </dependency>
- <!--json-->
- <dependency>
- <groupId>net.sf.ezmorph</groupId>
- <artifactId>ezmorph</artifactId>
- <version>1.0.6</version>
- </dependency>
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.4</version>
- <classifier>jdk15</classifier>
- <!--<scope>system</scope>-->
- <!--<systemPath>${basedir}/lib/json-lib-2.4.jar</systemPath>-->
- </dependency>
- </dependencies>
- </project>
|