pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. <groupId>com.4dage</groupId>
  7. <artifactId>dinner-paren</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <description>3D版美味不用等</description>
  10. <packaging>pom</packaging>
  11. <modules>
  12. <module>dinner-application</module>
  13. <module>dinner-core</module>
  14. </modules>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
  20. <nacos.latest.version>0.2.1</nacos.latest.version>
  21. <nacos-config-spring-boot.version>0.2.1</nacos-config-spring-boot.version>
  22. <jedis-version>3.1.0</jedis-version>
  23. </properties>
  24. <parent>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-parent</artifactId>
  27. <version>2.2.5.RELEASE</version>
  28. <relativePath/> <!-- lookup parent from repository -->
  29. </parent>
  30. <dependencies>
  31. <!-- 引入四维sdk -->
  32. <dependency>
  33. <groupId>org.4dage</groupId>
  34. <artifactId>4dage-back-sdk</artifactId>
  35. <version>1.0.2.20-RELEASE</version>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>io.lettuce</groupId>
  39. <artifactId>lettuce-core</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <!-- mybatis-plus逻辑删除依赖-->
  44. <dependency>
  45. <groupId>com.baomidou</groupId>
  46. <artifactId>mybatis-plus-core</artifactId>
  47. <version>3.3.1.tmp</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>redis.clients</groupId>
  51. <artifactId>jedis</artifactId>
  52. <version>${jedis-version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-data-redis</artifactId>
  57. <exclusions>
  58. <exclusion>
  59. <groupId>io.lettuce</groupId>
  60. <artifactId>lettuce-core</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.netflix.hystrix</groupId>
  66. <artifactId>hystrix-core</artifactId>
  67. <version>1.5.12</version>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/com.netflix.hystrix/hystrix-javanica -->
  70. <dependency>
  71. <groupId>com.netflix.hystrix</groupId>
  72. <artifactId>hystrix-javanica</artifactId>
  73. <version>1.5.12</version>
  74. </dependency>
  75. <!-- http://mvnrepository.com/artifact/com.netflix.hystrix/hystrix-metrics-event-stream -->
  76. <dependency>
  77. <groupId>com.netflix.hystrix</groupId>
  78. <artifactId>hystrix-metrics-event-stream</artifactId>
  79. <version>1.5.12</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-tomcat</artifactId>
  84. <scope>provided</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.fasterxml.jackson.datatype</groupId>
  88. <artifactId>jackson-datatype-jsr310</artifactId>
  89. <version>2.12.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.google.zxing</groupId>
  93. <artifactId>core</artifactId>
  94. <version>3.4.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.google.zxing</groupId>
  98. <artifactId>javase</artifactId>
  99. <version>3.4.0</version>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-compiler-plugin</artifactId>
  107. <configuration>
  108. <source>${java.version}</source>
  109. <target>${java.version}</target>
  110. </configuration>
  111. </plugin>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-surefire-plugin</artifactId>
  115. <version>${maven-surefire-plugin.version}</version>
  116. <configuration>
  117. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. </project>