pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. <parent>
  7. <groupId>com.gct</groupId>
  8. <artifactId>springboot-gct</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>pro-process</artifactId>
  12. <properties>
  13. <maven.compiler.source>17</maven.compiler.source>
  14. <maven.compiler.target>17</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.alibaba.fastjson2</groupId>
  28. <artifactId>fastjson2</artifactId>
  29. <version>2.0.27</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>mybatis-plus-boot-starter</artifactId>
  34. <version>3.5.3.1</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.baomidou</groupId>
  38. <artifactId>mybatis-plus</artifactId>
  39. <version>3.5.3.1</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.baomidou</groupId>
  43. <artifactId>mybatis-plus-generator</artifactId>
  44. <version>3.3.1</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.velocity</groupId>
  48. <artifactId>velocity-engine-core</artifactId>
  49. <version>2.3</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.spring4all</groupId>
  53. <artifactId>swagger-spring-boot-starter</artifactId>
  54. <version>1.9.1.RELEASE</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>junit</groupId>
  58. <artifactId>junit</artifactId>
  59. <version>4.13</version>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-jdbc</artifactId>
  65. <version>3.1.2</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>mysql</groupId>
  69. <artifactId>mysql-connector-java</artifactId>
  70. <version>8.0.25</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-test</artifactId>
  75. <version>3.1.2</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.projectlombok</groupId>
  79. <artifactId>lombok</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.kdb</groupId>
  83. <artifactId>khapi</artifactId>
  84. <version>1.0.0</version>
  85. <scope>system</scope>
  86. <systemPath>${project.basedir}/libs/khapi.jar</systemPath>
  87. <exclusions>
  88. <exclusion>
  89. <artifactId>slf4j-log4j12</artifactId>
  90. <groupId>org.slf4j</groupId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. </dependencies>
  95. <build>
  96. <resources>
  97. <resource>
  98. <directory>src/main/java</directory>
  99. <excludes>
  100. <exclude>**/*.java</exclude>
  101. </excludes>
  102. </resource>
  103. <resource>
  104. <directory>src/main/resources</directory>
  105. <includes>
  106. <include>**/*.*</include>
  107. </includes>
  108. </resource>
  109. <resource>
  110. <directory>${basedir}/libs</directory>
  111. <targetPath>BOOT-INF/lib/</targetPath>
  112. <includes>
  113. <include>**/*.jar</include>
  114. </includes>
  115. </resource>
  116. </resources>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-maven-plugin</artifactId>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>