pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. <packaging>jar</packaging>
  6. <parent>
  7. <groupId>com.fdkankan</groupId>
  8. <artifactId>4dkankan-parent</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <artifactId>4dkankan-center-scene</artifactId>
  12. <properties>
  13. <java.version>1.8</java.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.fdkankan</groupId>
  18. <artifactId>4dkankan-center-platform-api</artifactId>
  19. <version>2.0.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.fdkankan</groupId>
  23. <artifactId>4dkankan-common</artifactId>
  24. <version>2.0.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.fdkankan</groupId>
  28. <artifactId>4dkankan-pom</artifactId>
  29. <version>2.0.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.fdkankan</groupId>
  33. <artifactId>4dkankan-common-mq</artifactId>
  34. <version>2.0.0</version>
  35. </dependency>
  36. <!-- <dependency>-->
  37. <!-- <groupId>com.alibaba.cloud</groupId>-->
  38. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>-->
  39. <!-- <exclusions>-->
  40. <!-- <exclusion>-->
  41. <!-- <artifactId>jackson-annotations</artifactId>-->
  42. <!-- <groupId>com.fasterxml.jackson.core</groupId>-->
  43. <!-- </exclusion>-->
  44. <!-- </exclusions>-->
  45. <!-- </dependency>-->
  46. <!-- <dependency>-->
  47. <!-- <groupId>com.fasterxml.jackson.core</groupId>-->
  48. <!-- <artifactId>jackson-annotations</artifactId>-->
  49. <!-- <version>2.12.3</version>-->
  50. <!-- </dependency>-->
  51. <!-- <dependency>-->
  52. <!-- <groupId>org.springframework.boot</groupId>-->
  53. <!-- <artifactId>spring-boot-starter-test</artifactId>-->
  54. <!-- <scope>test</scope>-->
  55. <!-- <exclusions>-->
  56. <!-- <exclusion>-->
  57. <!-- <groupId>org.junit.vintage</groupId>-->
  58. <!-- <artifactId>junit-vintage-engine</artifactId>-->
  59. <!-- </exclusion>-->
  60. <!-- <exclusion>-->
  61. <!-- <groupId>junit</groupId>-->
  62. <!-- <artifactId>junit</artifactId>-->
  63. <!-- </exclusion>-->
  64. <!-- </exclusions>-->
  65. <!-- </dependency>-->
  66. <dependency>
  67. <groupId>org.projectlombok</groupId>
  68. <artifactId>lombok</artifactId>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-maven-plugin</artifactId>
  76. </plugin>
  77. <plugin>
  78. <groupId>org.apache.maven.plugins</groupId>
  79. <artifactId>maven-surefire-plugin</artifactId>
  80. <configuration>
  81. <testFailureIgnore>true</testFailureIgnore>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. </project>