pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <parent>
  4. <artifactId>parent</artifactId>
  5. <groupId>com.hzc.licangsifa</groupId>
  6. <version>1.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>com.hzc.licangsifa.phone</groupId>
  10. <artifactId>phone</artifactId>
  11. <packaging>war</packaging>
  12. <name>phone Maven Webapp</name>
  13. <url>http://maven.apache.org</url>
  14. <dependencies>
  15. <dependency>
  16. <groupId>commons-fileupload</groupId>
  17. <artifactId>commons-fileupload</artifactId>
  18. <version>1.3</version>
  19. <type>jar</type>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.commons.fileupload</groupId>
  23. <artifactId>fileupload</artifactId>
  24. <version>1.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>javax.servlet</groupId>
  28. <artifactId>servlet-api</artifactId>
  29. <version>2.5</version>
  30. <scope>provided</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>javax.servlet.jsp</groupId>
  34. <artifactId>jsp-api</artifactId>
  35. <version>2.1</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>net.sf.json-lib</groupId>
  40. <artifactId>json-lib</artifactId>
  41. <version>2.4</version>
  42. <classifier>jdk15</classifier>
  43. </dependency>
  44. <dependency>
  45. <groupId>ognl</groupId>
  46. <artifactId>ognl</artifactId>
  47. <version>2.6.9</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.hzc</groupId>
  51. <artifactId>hzc-sms</artifactId>
  52. <version>1.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.hzc</groupId>
  56. <artifactId>chuanglan</artifactId>
  57. <version>1.0</version>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <finalName>phone</finalName>
  62. </build>
  63. </project>