pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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>deventor</artifactId>
  7. <groupId>com.bluefire</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>deventor-cor</artifactId>
  12. <properties>
  13. <java.version>1.8</java.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.projectlombok</groupId>
  22. <artifactId>lombok</artifactId>
  23. <optional>true</optional>
  24. </dependency>
  25. <!-- json处理 -->
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>fastjson</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.hutool</groupId>
  32. <artifactId>hutool-all</artifactId>
  33. </dependency>
  34. <!--mybatis plus-->
  35. <dependency>
  36. <groupId>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-boot-starter</artifactId>
  38. </dependency>
  39. <!--mysql连接-->
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-test</artifactId>
  47. <scope>test</scope>
  48. <exclusions>
  49. <exclusion>
  50. <groupId>org.junit.vintage</groupId>
  51. <artifactId>junit-vintage-engine</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.jetbrains</groupId>
  57. <artifactId>annotations</artifactId>
  58. <version>13.0</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.httpcomponents</groupId>
  63. <artifactId>httpclient</artifactId>
  64. <version>4.5.11</version>
  65. </dependency>
  66. <!--okhttp-->
  67. <dependency>
  68. <groupId>com.squareup.okhttp3</groupId>
  69. <artifactId>okhttp</artifactId>
  70. <version>4.4.1</version>
  71. </dependency>
  72. </dependencies>
  73. <repositories>
  74. <!--阿里云主仓库,代理了maven central和jcenter仓库-->
  75. <repository>
  76. <id>aliyun</id>
  77. <name>aliyun</name>
  78. <url>https://maven.aliyun.com/repository/public</url>
  79. <releases>
  80. <enabled>true</enabled>
  81. </releases>
  82. <snapshots>
  83. <enabled>false</enabled>
  84. </snapshots>
  85. </repository>
  86. <!--阿里云代理Spring 官方仓库-->
  87. <repository>
  88. <id>spring-milestones</id>
  89. <name>Spring Milestones</name>
  90. <url>https://maven.aliyun.com/repository/spring</url>
  91. <releases>
  92. <enabled>true</enabled>
  93. </releases>
  94. <snapshots>
  95. <enabled>false</enabled>
  96. </snapshots>
  97. </repository>
  98. </repositories>
  99. <pluginRepositories>
  100. <!--阿里云代理Spring 插件仓库-->
  101. <pluginRepository>
  102. <id>spring-plugin</id>
  103. <name>spring-plugin</name>
  104. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  105. <releases>
  106. <enabled>true</enabled>
  107. </releases>
  108. <snapshots>
  109. <enabled>false</enabled>
  110. </snapshots>
  111. </pluginRepository>
  112. </pluginRepositories>
  113. </project>