pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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.sso</groupId>
  56. <artifactId>sso-common</artifactId>
  57. <version>0.0.1-SNAPSHOT</version>
  58. <exclusions>
  59. <exclusion>
  60. <artifactId>tomcat-embed-core</artifactId>
  61. <groupId>org.apache.tomcat.embed</groupId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.httpcomponents</groupId>
  67. <artifactId>httpclient</artifactId>
  68. <version>4.5.2</version>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <finalName>home</finalName>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.apache.tomcat.maven</groupId>
  76. <artifactId>tomcat7-maven-plugin</artifactId>
  77. <version>2.2</version>
  78. <configuration>
  79. <port>80</port>
  80. <path>/</path>
  81. <uriEncoding>utf-8</uriEncoding>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. <organization>
  87. <name>usoft</name>
  88. <url>http://www.usoftchina.com</url>
  89. </organization>
  90. <distributionManagement>
  91. <!-- 发布release仓库 -->
  92. <repository>
  93. <id>platform-release</id>
  94. <name>platform-release</name>
  95. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  96. </repository>
  97. <!-- 发布快照版本 -->
  98. <snapshotRepository>
  99. <id>platform-snapshots</id>
  100. <name>platform-snapshots</name>
  101. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  102. </snapshotRepository>
  103. </distributionManagement>
  104. </project>