123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <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/maven-v4_0_0.xsd">
- <parent>
- <artifactId>parent</artifactId>
- <groupId>com.hzc.licangsifa</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.hzc.licangsifa.phone</groupId>
- <artifactId>phone</artifactId>
- <packaging>war</packaging>
- <name>phone Maven Webapp</name>
- <url>http://maven.apache.org</url>
- <dependencies>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>1.3</version>
- <type>jar</type>
- </dependency>
- <dependency>
- <groupId>org.apache.commons.fileupload</groupId>
- <artifactId>fileupload</artifactId>
- <version>1.1</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.4</version>
- <classifier>jdk15</classifier>
- </dependency>
- <dependency>
- <groupId>ognl</groupId>
- <artifactId>ognl</artifactId>
- <version>2.6.9</version>
- </dependency>
- <dependency>
- <groupId>com.hzc</groupId>
- <artifactId>hzc-sms</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.hzc</groupId>
- <artifactId>chuanglan</artifactId>
- <version>1.0</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>phone</finalName>
- </build>
- </project>
|