Ingen beskrivning

pom.xml 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.sharemao.web</groupId>
  4. <artifactId>xw3</artifactId>
  5. <version>1.0</version>
  6. <packaging>war</packaging>
  7. <dependencies>
  8. <dependency>
  9. <groupId>com.nianzai.base.dao</groupId>
  10. <artifactId>micro-dao-framework</artifactId>
  11. <version>1.0.2.1</version>
  12. </dependency>
  13. <dependency>
  14. <groupId>com.nianzai.base.mvc</groupId>
  15. <artifactId>micro-mvc-framework</artifactId>
  16. <version>1.0.5</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>javax.servlet</groupId>
  20. <artifactId>javax.servlet-api</artifactId>
  21. <version>3.1.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>javax.servlet</groupId>
  25. <artifactId>jstl</artifactId>
  26. <version>1.2</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>dom4j</groupId>
  30. <artifactId>dom4j</artifactId>
  31. <version>1.6.1</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.jdom</groupId>
  35. <artifactId>jdom</artifactId>
  36. <version>1.1.3</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.thoughtworks.xstream</groupId>
  40. <artifactId>xstream</artifactId>
  41. <version>1.3.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>net.sf.json-lib</groupId>
  45. <artifactId>json-lib</artifactId>
  46. <version>2.4</version>
  47. <classifier>jdk15</classifier>
  48. </dependency>
  49. <dependency>
  50. <groupId>commons-fileupload</groupId>
  51. <artifactId>commons-fileupload</artifactId>
  52. <version>1.3.2</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>fastjson</artifactId>
  57. <version>1.2.17</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.httpcomponents</groupId>
  61. <artifactId>httpcore</artifactId>
  62. <version>4.4.10</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.httpcomponents</groupId>
  66. <artifactId>httpclient</artifactId>
  67. <version>4.5.6</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.projectlombok</groupId>
  71. <artifactId>lombok</artifactId>
  72. <version>1.16.18</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.alibaba.fastjson2</groupId>
  76. <artifactId>fastjson2</artifactId>
  77. <version>2.0.27</version>
  78. </dependency>
  79. </dependencies>
  80. <distributionManagement>
  81. <repository>
  82. <id>nexus-releases</id>
  83. <url>http://8.138.247.150:8088/repository/maven-releases/</url>
  84. </repository>
  85. <snapshotRepository>
  86. <id>nexus-snapshots</id>
  87. <url>http://8.138.247.150:8088/repository/maven-snapshots/</url>
  88. </snapshotRepository>
  89. </distributionManagement>
  90. <build>
  91. <finalName>wx3</finalName>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.eclipse.jetty</groupId>
  95. <artifactId>jetty-maven-plugin</artifactId>
  96. <version>9.2.8.v20150217</version>
  97. </plugin>
  98. </plugins>
  99. </build>
  100. <properties>
  101. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  102. </properties>
  103. </project>