pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>gihon.component</groupId>
  5. <artifactId>component-parent</artifactId>
  6. <version>0.2.0-SNAPSHOT</version>
  7. <name>component-parent</name>
  8. <packaging>pom</packaging>
  9. <description>component parent project</description>
  10. <modules>
  11. <module>component-common</module>
  12. <module>component-entity</module>
  13. <module>component-database</module>
  14. <module>component-websecurity</module>
  15. <module>component-sso</module>
  16. <module>component-springboot</module>
  17. </modules>
  18. <properties>
  19. <assembly.path>${project.basedir}/../assembly/</assembly.path>
  20. <assembly.filter.path>src/assembly/filter.properties</assembly.filter.path>
  21. <gihon.version>0.2.0-SNAPSHOT</gihon.version>
  22. <java.version>1.8</java.version>
  23. <maven.compiler.source>8</maven.compiler.source>
  24. <maven.compiler.target>8</maven.compiler.target>
  25. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  27. <mybatis.version>2.1.3</mybatis.version>
  28. <mybatis.plus.version>3.4.0</mybatis.plus.version>
  29. <lombok.version>1.16.20</lombok.version>
  30. <easyexcel.version>3.0.5</easyexcel.version>
  31. <druid.version>1.1.21</druid.version>
  32. <kaptcha.version>0.0.9</kaptcha.version>
  33. <jsoup.version>1.9.2</jsoup.version>
  34. <knife4j.version>3.0.2</knife4j.version>
  35. <spring.boot.version>2.7.5</spring.boot.version>
  36. <jakarta-json.version>2.0.1</jakarta-json.version>
  37. </properties>
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-dependencies</artifactId>
  43. <version>${spring.boot.version}</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.jsoup</groupId>
  49. <artifactId>jsoup</artifactId>
  50. <version>${jsoup.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.axet</groupId>
  54. <artifactId>kaptcha</artifactId>
  55. <version>${kaptcha.version}</version>
  56. </dependency>
  57. <!--druid数据库-->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-jdbc</artifactId>
  61. <exclusions>
  62. <exclusion>
  63. <groupId>com.zaxxer</groupId>
  64. <artifactId>HikariCP</artifactId>
  65. </exclusion>
  66. </exclusions>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba</groupId>
  70. <artifactId>druid-spring-boot-starter</artifactId>
  71. <version>${druid.version}</version>
  72. </dependency>
  73. <!-- mybatis -->
  74. <dependency>
  75. <groupId>org.mybatis.spring.boot</groupId>
  76. <artifactId>mybatis-spring-boot-starter</artifactId>
  77. <version>${mybatis.version}</version>
  78. </dependency>
  79. <!-- mybatis-plus -->
  80. <dependency>
  81. <groupId>com.baomidou</groupId>
  82. <artifactId>mybatis-plus-boot-starter</artifactId>
  83. <version>${mybatis.plus.version}</version>
  84. </dependency>
  85. <!-- mybatis-plus -->
  86. <!--easyexcel-->
  87. <dependency>
  88. <groupId>com.alibaba</groupId>
  89. <artifactId>easyexcel</artifactId>
  90. <version>${easyexcel.version}</version>
  91. </dependency>
  92. <!--knife4j相关-->
  93. <dependency>
  94. <groupId>com.github.xiaoymin</groupId>
  95. <artifactId>knife4j-spring-boot-starter</artifactId>
  96. <version>${knife4j.version}</version>
  97. </dependency>
  98. <!--gihon-util-->
  99. <dependency>
  100. <groupId>gihon.component</groupId>
  101. <artifactId>component-common</artifactId>
  102. <version>${gihon.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>gihon.component</groupId>
  106. <artifactId>component-entity</artifactId>
  107. <version>${gihon.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>gihon.component</groupId>
  111. <artifactId>component-database</artifactId>
  112. <version>${gihon.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>gihon.component</groupId>
  116. <artifactId>component-websecurity</artifactId>
  117. <version>${gihon.version}</version>
  118. </dependency>
  119. </dependencies>
  120. </dependencyManagement>
  121. <dependencies>
  122. <dependency>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-starter-data-redis</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.hibernate.validator</groupId>
  128. <artifactId>hibernate-validator</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-configuration-processor</artifactId>
  133. <optional>true</optional>
  134. <scope>compile</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.projectlombok</groupId>
  138. <artifactId>lombok</artifactId>
  139. <optional>true</optional>
  140. </dependency>
  141. <!-- Slf4j日志 -->
  142. <dependency>
  143. <groupId>org.slf4j</groupId>
  144. <artifactId>slf4j-api</artifactId>
  145. <optional>true</optional>
  146. </dependency>
  147. </dependencies>
  148. <build>
  149. <plugins>
  150. <plugin>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-maven-plugin</artifactId>
  153. </plugin>
  154. </plugins>
  155. </build>
  156. </project>