pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.1.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>adm.poc</groupId>
  12. <artifactId>adm.poc</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <packaging>jar</packaging>
  15. <name>adm.poc</name>
  16. <url>http://maven.apache.org</url>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <mysql.version>5.1.38</mysql.version>
  20. <h2.version>1.4.196</h2.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-devtools</artifactId>
  30. <scope>runtime</scope>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.junit.vintage</groupId>
  40. <artifactId>junit-vintage-engine</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. <!-- bogda 依赖 -->
  45. <dependency>
  46. <groupId>com.hiclimb</groupId>
  47. <artifactId>bogda-product</artifactId>
  48. <version>1.0</version>
  49. <scope>system</scope>
  50. <systemPath>${project.basedir}/lib/bogda.product.jar</systemPath>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.hiclimb</groupId>
  54. <artifactId>bogda-license</artifactId>
  55. <version>1.0</version>
  56. <scope>system</scope>
  57. <systemPath>${project.basedir}/lib/license.jar</systemPath>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.google.code.gson</groupId>
  61. <artifactId>gson</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.alibaba</groupId>
  65. <artifactId>druid</artifactId>
  66. <version>1.1.11</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>joda-time</groupId>
  70. <artifactId>joda-time</artifactId>
  71. <version>2.10.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>log4j</groupId>
  75. <artifactId>log4j</artifactId>
  76. <version>1.2.16</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.httpcomponents.client5</groupId>
  80. <artifactId>httpclient5</artifactId>
  81. <version>5.1</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>mysql</groupId>
  85. <artifactId>mysql-connector-java</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.mybatis.spring.boot</groupId>
  89. <artifactId>mybatis-spring-boot-starter</artifactId>
  90. <version>1.3.0</version>
  91. </dependency>
  92. </dependencies>
  93. <build>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-maven-plugin</artifactId>
  98. <version>2.3.1.RELEASE</version>
  99. <configuration>
  100. <executable>true</executable>
  101. <includeSystemScope>true</includeSystemScope>
  102. </configuration>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. </project>