基础版中间件

pom.xml 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>midware</groupId>
  8. <artifactId>midware-base</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>midware-api</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <api.version>1.0.0</api.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. <optional>true</optional>
  23. </dependency>
  24. <!-- mysql驱动 -->
  25. <dependency>
  26. <groupId>mysql</groupId>
  27. <artifactId>mysql-connector-java</artifactId>
  28. <version>8.0.28</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>midware</groupId>
  32. <artifactId>midware-service</artifactId>
  33. <version>${api.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>midware</groupId>
  37. <artifactId>midware-util</artifactId>
  38. <version>${api.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>midware</groupId>
  42. <artifactId>midware-mapper</artifactId>
  43. <version>${api.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>midware</groupId>
  47. <artifactId>midware-entity</artifactId>
  48. <version>${api.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>druid</artifactId>
  53. <version>1.1.22</version>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>