pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.uas.platform.warehouse</groupId>
  7. <artifactId>warehouse</artifactId>
  8. <version>0.1.2-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <name>Warehouse Platform</name>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>1.7</maven.compiler.source>
  14. <maven.compiler.target>1.7</maven.compiler.target>
  15. <skipTests>true</skipTests>
  16. <checkstyle.config.location>google_checks_7.1.2.xml</checkstyle.config.location>
  17. <!-- Project Version -->
  18. <warehouse-common.version>0.1.2-SNAPSHOT</warehouse-common.version>
  19. <warehouse-transport.version>0.1.2-SNAPSHOT</warehouse-transport.version>
  20. <!-- Dependencies Version -->
  21. <spring-boot.version>1.5.6.RELEASE</spring-boot.version>
  22. <commons-logging.version>1.1</commons-logging.version>
  23. <jackson.version>2.8.9</jackson.version>
  24. <joda-time.version>2.9.9</joda-time.version>
  25. <httpclient.version>4.5.3</httpclient.version>
  26. <mysql.version>6.0.6</mysql.version>
  27. <commons-lang3.version>3.5</commons-lang3.version>
  28. </properties>
  29. <parent>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-parent</artifactId>
  32. <version>1.5.6.RELEASE</version>
  33. </parent>
  34. <modules>
  35. <module>warehouse-backend-app</module>
  36. <module>warehouse-common</module>
  37. <module>warehouse-uas-sdk</module>
  38. <module>warehouse-online-app</module>
  39. <module>warehouse-transport</module>
  40. <module>warehouse-home-app</module>
  41. </modules>
  42. <dependencyManagement>
  43. <dependencies>
  44. <!-- Custom Lib -->
  45. <dependency>
  46. <groupId>com.uas.platform.warehouse</groupId>
  47. <artifactId>warehouse-common</artifactId>
  48. <version>${warehouse-common.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.uas.platform.warehouse</groupId>
  52. <artifactId>warehouse-transport</artifactId>
  53. <version>${warehouse-transport.version}</version>
  54. </dependency>
  55. <!-- Apache Commons -->
  56. <dependency>
  57. <groupId>org.apache.commons</groupId>
  58. <artifactId>commons-lang3</artifactId>
  59. <version>${commons-lang3.version}</version>
  60. </dependency>
  61. <!-- Jackson -->
  62. <dependency>
  63. <groupId>com.fasterxml.jackson.core</groupId>
  64. <artifactId>jackson-databind</artifactId>
  65. <version>${jackson.version}</version>
  66. </dependency>
  67. <!-- Joda Time -->
  68. <dependency>
  69. <groupId>joda-time</groupId>
  70. <artifactId>joda-time</artifactId>
  71. <version>${joda-time.version}</version>
  72. </dependency>
  73. <!-- Apache Http Client -->
  74. <dependency>
  75. <groupId>org.apache.httpcomponents</groupId>
  76. <artifactId>httpclient</artifactId>
  77. <version>${httpclient.version}</version>
  78. </dependency>
  79. <!-- Spring Boot -->
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-logging</artifactId>
  83. <version>${spring-boot.version}</version>
  84. </dependency>
  85. <!-- Database Drivers -->
  86. <dependency>
  87. <groupId>mysql</groupId>
  88. <artifactId>mysql-connector-java</artifactId>
  89. <version>${mysql.version}</version>
  90. </dependency>
  91. </dependencies>
  92. </dependencyManagement>
  93. <distributionManagement>
  94. <!-- 发布release仓库 -->
  95. <repository>
  96. <id>platform-release</id>
  97. <name>platform-release</name>
  98. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  99. </repository>
  100. <!-- 发布快照版本 -->
  101. <snapshotRepository>
  102. <id>platform-snapshots</id>
  103. <name>platform-snapshots</name>
  104. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  105. </snapshotRepository>
  106. </distributionManagement>
  107. </project>