pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. <groupId>com.fdkankan</groupId>
  6. <artifactId>4dkankan-mvp</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. <repositories>
  9. <repository>
  10. <id>releases</id>
  11. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  12. </repository>
  13. <repository>
  14. <id>nexus-aliyun</id>
  15. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  16. </repository>
  17. <repository>
  18. <id>snapshots</id>
  19. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  20. </repository>
  21. </repositories>
  22. <properties>
  23. <java.version>1.8</java.version>
  24. <fastjson-version>1.2.83</fastjson-version>
  25. <hutool-version>5.7.17</hutool-version>
  26. <spring.cloud-version>Hoxton.SR8</spring.cloud-version>
  27. <servlet-api-version>2.4</servlet-api-version>
  28. <shiro.version>1.7.1</shiro.version>
  29. <spring.plugin.metadata-version>1.2.0.RELEASE</spring.plugin.metadata-version>
  30. <lombok-version>1.18.20</lombok-version>
  31. <forest-version>1.5.19</forest-version>
  32. <fastjson-version>1.2.83</fastjson-version>
  33. </properties>
  34. <dependencies>
  35. <dependency>
  36. <groupId>cn.hutool</groupId>
  37. <artifactId>hutool-all</artifactId>
  38. <version>${hutool-version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.projectlombok</groupId>
  42. <artifactId>lombok</artifactId>
  43. <version>${lombok-version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.dtflys.forest</groupId>
  47. <artifactId>forest-core</artifactId>
  48. <version>1.5.26</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>fastjson</artifactId>
  53. <version>${fastjson-version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter</artifactId>
  58. <version>2.3.12.RELEASE</version>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <pluginManagement>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-compiler-plugin</artifactId>
  67. <version>3.8.1</version>
  68. <configuration>
  69. <source>8</source>
  70. <target>8</target>
  71. </configuration>
  72. </plugin>
  73. </plugins>
  74. </pluginManagement>
  75. </build>
  76. <distributionManagement>
  77. <repository>
  78. <!-- 这里的ID要和setting的id一致 -->
  79. <id>releases</id>
  80. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  81. </repository>
  82. <!--这是打成快照版本的配置 -->
  83. <snapshotRepository>
  84. <id>snapshots</id>
  85. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  86. </snapshotRepository>
  87. </distributionManagement>
  88. </project>