| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <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>
- <parent>
- <groupId>cn.yunzhixue</groupId>
- <artifactId>dcjxb.microservice</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <relativePath>../../../pom.xml</relativePath>
- </parent>
- <artifactId>exam-sprint-application</artifactId>
- <name>exam-sprint-application</name>
- <dependencies>
- <dependency>
- <groupId>cn.yunzhixue</groupId>
- <artifactId>ability-center-kernel</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.yunzhixue</groupId>
- <artifactId>exam-sprint-contracts</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.yunzhixue</groupId>
- <artifactId>exam-sprint-domain</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-autoconfigure</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|