pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. <artifactId>data-dict</artifactId>
  7. <packaging>jar</packaging>
  8. <name>data-dict</name>
  9. <description>Demo project for Spring Boot</description>
  10. <parent>
  11. <groupId>com.unis.springcloud</groupId>
  12. <artifactId>parent</artifactId>
  13. <version>1.0.0</version>
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.cloud</groupId>
  22. <artifactId>spring-cloud-starter-config</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.github.pagehelper</groupId>
  26. <artifactId>pagehelper-spring-boot-starter</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-starter-openfeign</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-redis</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.cloud</groupId>
  38. <artifactId>spring-cloud-config-client</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-devtools</artifactId>
  47. <scope>runtime</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. <optional>true</optional>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-test</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <!--mysql数据库-->
  60. <dependency>
  61. <groupId>mysql</groupId>
  62. <artifactId>mysql-connector-java</artifactId>
  63. <version>8.0.28</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mybatis.spring.boot</groupId>
  67. <artifactId>mybatis-spring-boot-starter</artifactId>
  68. <version>3.0.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>tk.mybatis</groupId>
  72. <artifactId>mapper-spring-boot-starter</artifactId>
  73. <exclusions>
  74. <exclusion>
  75. <groupId>javax.persistence</groupId>
  76. <artifactId>persistence-api</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.alibaba</groupId>
  82. <artifactId>fastjson</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.github.pagehelper</groupId>
  86. <artifactId>pagehelper-spring-boot-starter</artifactId>
  87. </dependency>
  88. <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
  89. <dependency>
  90. <groupId>com.unis.springcloud</groupId>
  91. <artifactId>common</artifactId>
  92. <version>1.0.0</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.gbase8s</groupId>
  96. <artifactId>ifxjdbc</artifactId>
  97. <version>1.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.gbase</groupId>
  101. <artifactId>druid</artifactId>
  102. <version>1.0.28</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-data-jpa</artifactId>
  107. </dependency>
  108. </dependencies>
  109. <build>
  110. <plugins>
  111. <plugin>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-maven-plugin</artifactId>
  114. <!-- <configuration> <layout>ZIP</layout> <includes> <include> <groupId>com.unis.integration.server</groupId>
  115. <artifactId>integration-server</artifactId> </include> </includes> </configuration> -->
  116. </plugin>
  117. </plugins>
  118. <extensions>
  119. <extension>
  120. <groupId>com.alibaba</groupId>
  121. <artifactId>druid-spring-boot-starter</artifactId>
  122. </extension>
  123. </extensions>
  124. <finalName>data-dict</finalName>
  125. </build>
  126. <repositories>
  127. <repository>
  128. <id>spring-milestones</id>
  129. <name>Spring Milestones</name>
  130. <url>https://repo.spring.io/milestone</url>
  131. <snapshots>
  132. <enabled>false</enabled>
  133. </snapshots>
  134. </repository>
  135. </repositories>
  136. </project>