pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. </dependency>
  58. </dependencies>
  59. <build>
  60. <finalName>home</finalName>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.apache.tomcat.maven</groupId>
  64. <artifactId>tomcat7-maven-plugin</artifactId>
  65. <version>2.2</version>
  66. <configuration>
  67. <port>80</port>
  68. <path>/</path>
  69. <uriEncoding>utf-8</uriEncoding>
  70. </configuration>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. <organization>
  75. <name>usoft</name>
  76. <url>http://www.usoftchina.com</url>
  77. </organization>
  78. <distributionManagement>
  79. <!-- 发布release仓库 -->
  80. <repository>
  81. <id>platform-release</id>
  82. <name>platform-release</name>
  83. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  84. </repository>
  85. <!-- 发布快照版本 -->
  86. <snapshotRepository>
  87. <id>platform-snapshots</id>
  88. <name>platform-snapshots</name>
  89. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  90. </snapshotRepository>
  91. </distributionManagement>
  92. </project>