123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <packaging>jar</packaging>
- <parent>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-parent</artifactId>
- <version>2.0.0</version>
- </parent>
- <artifactId>4dkankan-center-scene</artifactId>
- <properties>
- <java.version>1.8</java.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-center-platform-api</artifactId>
- <version>2.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-common</artifactId>
- <version>2.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-pom</artifactId>
- <version>2.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-common-mq</artifactId>
- <version>2.0.0</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.alibaba.cloud</groupId>-->
- <!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>-->
- <!-- <exclusions>-->
- <!-- <exclusion>-->
- <!-- <artifactId>jackson-annotations</artifactId>-->
- <!-- <groupId>com.fasterxml.jackson.core</groupId>-->
- <!-- </exclusion>-->
- <!-- </exclusions>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>com.fasterxml.jackson.core</groupId>-->
- <!-- <artifactId>jackson-annotations</artifactId>-->
- <!-- <version>2.12.3</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-starter-test</artifactId>-->
- <!-- <scope>test</scope>-->
- <!-- <exclusions>-->
- <!-- <exclusion>-->
- <!-- <groupId>org.junit.vintage</groupId>-->
- <!-- <artifactId>junit-vintage-engine</artifactId>-->
- <!-- </exclusion>-->
- <!-- <exclusion>-->
- <!-- <groupId>junit</groupId>-->
- <!-- <artifactId>junit</artifactId>-->
- <!-- </exclusion>-->
- <!-- </exclusions>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <testFailureIgnore>true</testFailureIgnore>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|