1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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>
- <artifactId>ce-datamonitorsystem</artifactId>
- <groupId>com.creditease.moniter</groupId>
- <version>1.0</version>
- <relativePath>../com.creditease.uav.superpom</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>com.creditease.uav.upgrade</artifactId>
-
- <dependencies>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-all</artifactId>
- <version>4.0.25.Final</version>
- </dependency>
-
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.4.1</version>
- </dependency>
-
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>1.9</version>
- </dependency>
-
- <dependency>
- <groupId>com.creditease.moniter</groupId>
- <artifactId>com.creditease.uav.fastjson</artifactId>
- </dependency>
-
- <dependency>
- <groupId>com.creditease.moniter</groupId>
- <artifactId>com.creditease.uav.helper</artifactId>
- </dependency>
-
- <dependency>
- <groupId>com.creditease.moniter</groupId>
- <artifactId>com.creditease.uav.logging</artifactId>
- </dependency>
-
- <dependency>
- <groupId>com.creditease.moniter</groupId>
- <artifactId>com.creditease.uav.base</artifactId>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.7</source>
- <target>1.7</target>
- <encoding>UTF-8</encoding>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|