pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. <parent>
  6. <artifactId>qyzg-service</artifactId>
  7. <groupId>com.unis.qyzg</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>qyzg-server</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>mysql</groupId>
  15. <artifactId>mysql-connector-java</artifactId>
  16. <version>8.0.28</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.github.pagehelper</groupId>
  20. <artifactId>pagehelper-spring-boot-starter</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.alibaba</groupId>
  24. <artifactId>druid-spring-boot-starter</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.easyproject</groupId>
  28. <artifactId>ojdbc7</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.mybatis.spring.boot</groupId>
  32. <artifactId>mybatis-spring-boot-starter</artifactId>
  33. <version>3.0.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>tk.mybatis</groupId>
  37. <artifactId>mapper-spring-boot-starter</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-config-client</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.cloud</groupId>
  45. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-test</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-web</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-tomcat</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.unis.flowable</groupId>
  62. <artifactId>flowable-client</artifactId>
  63. <version>0.0.1-SNAPSHOT</version>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>com.unis.springcloud</groupId>
  67. <artifactId>common</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <dependency>
  72. <artifactId>qyzg-common</artifactId>
  73. <groupId>com.unis.qyzg</groupId>
  74. <version>1.0-SNAPSHOT</version>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-maven-plugin</artifactId>
  82. </plugin>
  83. </plugins>
  84. <finalName>qyzg-server</finalName>
  85. </build>
  86. <repositories>
  87. <repository>
  88. <id>spring-milestones</id>
  89. <name>Spring Milestones</name>
  90. <url>https://repo.spring.io/milestone</url>
  91. <snapshots>
  92. <enabled>false</enabled>
  93. </snapshots>
  94. </repository>
  95. </repositories>
  96. </project>