pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. <artifactId>warehouse-home-app</artifactId>
  7. <packaging>jar</packaging>
  8. <parent>
  9. <artifactId>warehouse</artifactId>
  10. <groupId>com.uas.platform.warehouse</groupId>
  11. <version>0.1.2-SNAPSHOT</version>
  12. </parent>
  13. <dependencies>
  14. <!-- Custom Lib -->
  15. <dependency>
  16. <groupId>com.uas.platform.warehouse</groupId>
  17. <artifactId>warehouse-common</artifactId>
  18. </dependency>
  19. <!-- Spring Boot -->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <!--<dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-data-jpa</artifactId>
  27. </dependency>-->
  28. <!-- Joda Time -->
  29. <dependency>
  30. <groupId>joda-time</groupId>
  31. <artifactId>joda-time</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>commons-codec</groupId>
  35. <artifactId>commons-codec</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.commons</groupId>
  39. <artifactId>commons-lang3</artifactId>
  40. </dependency>
  41. <!-- Database Drivers -->
  42. <!--<dependency>
  43. <groupId>mysql</groupId>
  44. <artifactId>mysql-connector-java</artifactId>
  45. </dependency>-->
  46. <!-- WebJar -->
  47. <dependency>
  48. <groupId>org.webjars</groupId>
  49. <artifactId>webjars-locator</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.webjars</groupId>
  53. <artifactId>jquery</artifactId>
  54. <version>2.1.1</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.webjars</groupId>
  58. <artifactId>angularjs</artifactId>
  59. <version>1.4.3</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.webjars</groupId>
  63. <artifactId>bootstrap</artifactId>
  64. <version>3.2.0</version>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. </plugin>
  73. <!-- Code Quality Check -->
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-checkstyle-plugin</artifactId>
  77. <version>2.17</version>
  78. <!-- CheckStyle Default Version: 6.11.2 -->
  79. <dependencies>
  80. <dependency>
  81. <groupId>com.puppycrawl.tools</groupId>
  82. <artifactId>checkstyle</artifactId>
  83. <version>7.1.2</version>
  84. </dependency>
  85. </dependencies>
  86. <executions>
  87. <execution>
  88. <id>Validate</id>
  89. <phase>validate</phase>
  90. <goals>
  91. <goal>check</goal>
  92. </goals>
  93. <configuration>
  94. <encoding>UTF-8</encoding>
  95. <failsOnError>true</failsOnError>
  96. </configuration>
  97. </execution>
  98. </executions>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. <distributionManagement>
  103. <!-- 发布release仓库 -->
  104. <repository>
  105. <id>platform-release</id>
  106. <name>platform-release</name>
  107. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  108. </repository>
  109. <!-- 发布快照版本 -->
  110. <snapshotRepository>
  111. <id>platform-snapshots</id>
  112. <name>platform-snapshots</name>
  113. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  114. </snapshotRepository>
  115. </distributionManagement>
  116. </project>