javademo

pom.xml 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. <parent>
  6. <groupId>com.example</groupId>
  7. <artifactId>webapidemo</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>webapidemo-api</artifactId>
  11. <description>webapidemo-api</description>
  12. <properties>
  13. <java.version>1.8</java.version>
  14. <webapi.version>1.0.0</webapi.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. <optional>true</optional>
  21. </dependency>
  22. <!-- mysql驱动 -->
  23. <dependency>
  24. <groupId>mysql</groupId>
  25. <artifactId>mysql-connector-java</artifactId>
  26. <version>8.0.28</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.example</groupId>
  30. <artifactId>webapidemo-service</artifactId>
  31. <version>${webapi.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.example</groupId>
  35. <artifactId>webapidemo-mapper</artifactId>
  36. <version>${webapi.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.example</groupId>
  40. <artifactId>webapidemo-entity</artifactId>
  41. <version>${webapi.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.example</groupId>
  45. <artifactId>webapidemo-util</artifactId>
  46. <version>${webapi.version}</version>
  47. </dependency>
  48. <!-- 验证码 -->
  49. <dependency>
  50. <groupId>pro.fessional</groupId>
  51. <artifactId>kaptcha</artifactId>
  52. <version>2.3.3</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.commons</groupId>
  56. <artifactId>commons-lang3</artifactId>
  57. <version>3.9</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-test</artifactId>
  62. <version>2.4.5</version>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>junit</groupId>
  67. <artifactId>junit</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>druid</artifactId>
  73. <version>1.1.22</version>
  74. </dependency>
  75. <!-- <dependency>-->
  76. <!-- <groupId>org.apache.shardingsphere</groupId>-->
  77. <!-- <artifactId>sharding-jdbc-spring-boot-starter</artifactId>-->
  78. <!-- <version>4.1.1</version>-->
  79. <!-- </dependency>-->
  80. <!-- <dependency>-->
  81. <!-- <groupId>org.apache.shardingsphere</groupId>-->
  82. <!-- <artifactId>shardingsphere-jdbc-core-spring-boot-starter</artifactId>-->
  83. <!-- <version>5.1.1</version>-->
  84. <!-- </dependency>-->
  85. <!-- 达梦驱动 -->
  86. <dependency>
  87. <groupId>com.dameng</groupId>
  88. <artifactId>DmJdbcDriver18</artifactId>
  89. <version>8.1.1.193</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>dom4j</groupId>
  93. <artifactId>dom4j</artifactId>
  94. <version>1.6.1</version>
  95. </dependency>
  96. </dependencies>
  97. <build>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-maven-plugin</artifactId>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. </project>