pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.uas.platform</groupId>
  6. <artifactId>platform</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>platform-home</artifactId>
  10. <packaging>war</packaging>
  11. <version>0.0.1</version>
  12. <name>platform-home Maven Webapp</name>
  13. <url>http://maven.apache.org</url>
  14. <dependencies>
  15. <!-- spring-webmvc -->
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-webmvc</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-context-support</artifactId>
  23. </dependency>
  24. <!-- spring mobile -->
  25. <dependency>
  26. <groupId>org.springframework.mobile</groupId>
  27. <artifactId>spring-mobile-device</artifactId>
  28. </dependency>
  29. <!-- log4j -->
  30. <dependency>
  31. <groupId>log4j</groupId>
  32. <artifactId>log4j</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>commons-logging</groupId>
  36. <artifactId>commons-logging</artifactId>
  37. <version>1.1.1</version>
  38. </dependency>
  39. <!-- fastjson -->
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>fastjson</artifactId>
  43. </dependency>
  44. <!-- file upload -->
  45. <dependency>
  46. <groupId>commons-fileupload</groupId>
  47. <artifactId>commons-fileupload</artifactId>
  48. <version>1.3.2</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>javax.servlet</groupId>
  52. <artifactId>servlet-api</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.uas.account</groupId>
  56. <artifactId>account-common</artifactId>
  57. <version>0.0.1-SNAPSHOT</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.httpcomponents</groupId>
  61. <artifactId>httpclient</artifactId>
  62. <version>4.5.2</version>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <finalName>home</finalName>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.tomcat.maven</groupId>
  70. <artifactId>tomcat7-maven-plugin</artifactId>
  71. <version>2.2</version>
  72. <configuration>
  73. <port>80</port>
  74. <path>/</path>
  75. <uriEncoding>utf-8</uriEncoding>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. <organization>
  81. <name>usoft</name>
  82. <url>http://www.usoftchina.com</url>
  83. </organization>
  84. <distributionManagement>
  85. <!-- 发布release仓库 -->
  86. <repository>
  87. <id>platform-release</id>
  88. <name>platform-release</name>
  89. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  90. </repository>
  91. <!-- 发布快照版本 -->
  92. <snapshotRepository>
  93. <id>platform-snapshots</id>
  94. <name>platform-snapshots</name>
  95. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  96. </snapshotRepository>
  97. </distributionManagement>
  98. </project>