pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com</groupId>
  6. <artifactId>hg-webservice</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>hg-webservice</name>
  9. <description>hg-webservice</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.6.13</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-data-jpa</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-jdbc</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.mybatis.spring.boot</groupId>
  35. <artifactId>mybatis-spring-boot-starter</artifactId>
  36. <version>2.2.2</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.mysql</groupId>
  40. <artifactId>mysql-connector-j</artifactId>
  41. <scope>runtime</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.sun.xml.bind</groupId>
  50. <artifactId>jaxb-impl</artifactId>
  51. <version>2.3.5</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.sun.xml.bind</groupId>
  55. <artifactId>jaxb-xjc</artifactId>
  56. <version>2.3.5</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.sun.xml.ws</groupId>
  60. <artifactId>tools</artifactId>
  61. <version>2.3.2-1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.alibaba</groupId>
  65. <artifactId>druid-spring-boot-starter</artifactId>
  66. <version>1.2.11</version>
  67. </dependency>
  68. <!-- <dependency>-->
  69. <!-- <groupId>com.baomidou</groupId>-->
  70. <!-- <artifactId>dynamic-datasource-spring-boot-starter</artifactId> &lt;!&ndash; 多数据源 &ndash;&gt;-->
  71. <!-- <version>3.5.0</version>-->
  72. <!-- </dependency>-->
  73. <dependency>
  74. <groupId>org.projectlombok</groupId>
  75. <artifactId>lombok</artifactId>
  76. <version>1.18.20</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.dom4j</groupId>
  80. <artifactId>dom4j</artifactId>
  81. <version>2.1.1</version>
  82. </dependency>
  83. <!--使用简单示例对xml元素进行解析时不需要该依赖,但是使用复杂的selectNodes方法时就一定要该依赖-->
  84. <dependency>
  85. <groupId>jaxen</groupId>
  86. <artifactId>jaxen</artifactId>
  87. <version>1.1.1</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.baomidou</groupId>
  91. <artifactId>mybatis-plus-boot-starter</artifactId>
  92. <version>3.5.2</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>cn.hutool</groupId>
  96. <artifactId>hutool-all</artifactId>
  97. <version>5.8.16</version>
  98. </dependency>
  99. </dependencies>
  100. <dependencyManagement>
  101. <dependencies>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-dependencies</artifactId>
  105. <version>${spring-boot.version}</version>
  106. <type>pom</type>
  107. <scope>import</scope>
  108. </dependency>
  109. </dependencies>
  110. </dependencyManagement>
  111. <build>
  112. <plugins>
  113. <plugin>
  114. <groupId>org.apache.maven.plugins</groupId>
  115. <artifactId>maven-compiler-plugin</artifactId>
  116. <version>3.8.1</version>
  117. <configuration>
  118. <source>1.8</source>
  119. <target>1.8</target>
  120. <encoding>UTF-8</encoding>
  121. </configuration>
  122. </plugin>
  123. <plugin>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-maven-plugin</artifactId>
  126. <version>${spring-boot.version}</version>
  127. <configuration>
  128. <mainClass>com.hgwebservice.HgWebserviceApplication</mainClass>
  129. </configuration>
  130. <executions>
  131. <execution>
  132. <id>repackage</id>
  133. <goals>
  134. <goal>repackage</goal>
  135. </goals>
  136. </execution>
  137. </executions>
  138. </plugin>
  139. </plugins>
  140. </build>
  141. </project>