2022-03-15 10:01:53 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-03-16 07:58:00 +00:00
|
|
|
<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">
|
2022-03-15 10:01:53 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.cpic.xim</groupId>
|
|
|
|
<artifactId>disaster_warning</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2022-03-16 07:58:00 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<version>4.5.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
<version>1.9.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<version>1.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<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>
|
|
|
|
</dependency>
|
2022-03-16 09:51:25 +00:00
|
|
|
<!--Jackson包-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
<version>2.9.8</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>2.9.8</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
<version>2.9.8</version>
|
|
|
|
</dependency>
|
2022-03-16 07:58:00 +00:00
|
|
|
</dependencies>
|
2022-03-15 10:01:53 +00:00
|
|
|
<properties>
|
2022-03-16 07:58:00 +00:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2022-03-15 10:01:53 +00:00
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<defaultGoal>compile</defaultGoal>
|
|
|
|
</build>
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>dev</id>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>GBK</project.reporting.outputEncoding>
|
|
|
|
<maven.compiler.encoding>GBK</maven.compiler.encoding>
|
|
|
|
</properties>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>test</id>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>GBK</project.reporting.outputEncoding>
|
|
|
|
<maven.compiler.encoding>GBK</maven.compiler.encoding>
|
|
|
|
</properties>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
</project>
|