pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <packaging>jar</packaging>
  5. <name>b2c-erp-api</name>
  6. <url>http://maven.apache.org</url>
  7. <groupId>com.uas.api</groupId>
  8. <artifactId>b2c-erp-api</artifactId>
  9. <version>0.0.2</version>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <junit.version>4.12</junit.version>
  13. <servlet.version>3.0-alpha-1</servlet.version>
  14. <spring.version>4.1.6.RELEASE</spring.version>
  15. <log4j.version>1.2.16</log4j.version>
  16. <hessian.version>4.0.33.r2</hessian.version>
  17. <spring.data.commons>1.10.0.RELEASE</spring.data.commons>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>junit</groupId>
  22. <artifactId>junit</artifactId>
  23. <version>${junit.version}</version>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.caucho</groupId>
  28. <artifactId>hessian</artifactId>
  29. <version>${hessian.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework</groupId>
  33. <artifactId>spring-web</artifactId>
  34. <version>${spring.version}</version>
  35. <scope>provided</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-jdbc</artifactId>
  40. <version>${spring.version}</version>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>javax.servlet</groupId>
  45. <artifactId>servlet-api</artifactId>
  46. <version>${servlet.version}</version>
  47. <scope>provided</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>log4j</groupId>
  51. <artifactId>log4j</artifactId>
  52. <version>${log4j.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.data</groupId>
  56. <artifactId>spring-data-commons</artifactId>
  57. <version>${spring.data.commons}</version>
  58. <scope>provided</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>net.sf.flexjson</groupId>
  62. <artifactId>flexjson</artifactId>
  63. <version>2.1</version>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-compiler-plugin</artifactId>
  71. <configuration>
  72. <source>1.7</source>
  73. <target>1.7</target>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. </build>
  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>