disaster_warrning/code/java/天气灾害预警/pom.xml

92 lines
3.3 KiB
XML
Raw Permalink Normal View History

2022-03-15 10:01:53 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2022-03-17 17:40:59 +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>
2022-04-21 09:12:00 +00:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
2022-03-16 07:58:00 +00:00
<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
<dependency>
2022-03-17 17:40:59 +00:00
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.9.8</version>
2022-03-16 09:51:25 +00:00
</dependency>
<dependency>
2022-03-17 17:40:59 +00:00
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.8</version>
2022-03-16 09:51:25 +00:00
</dependency>
<dependency>
2022-03-17 17:40:59 +00:00
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.9.8</version>
2022-03-16 09:51:25 +00:00
</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-04-22 09:37:23 +00:00
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2022-03-15 10:01:53 +00:00
</properties>
<build>
<defaultGoal>compile</defaultGoal>
</build>
<profiles>
<profile>
<id>dev</id>
2022-03-18 08:04:54 +00:00
<properties></properties>
2022-03-15 10:01:53 +00:00
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>test</id>
2022-03-18 08:04:54 +00:00
<properties></properties>
2022-03-15 10:01:53 +00:00
<activation>
<activeByDefault>false</activeByDefault>
</activation>
</profile>
</profiles>
</project>