| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <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-infrastructure</artifactId>
- <name>exam-sprint-infrastructure</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>com.openhtmltopdf</groupId>
- <artifactId>openhtmltopdf-pdfbox</artifactId>
- <version>1.0.10</version>
- </dependency>
- <dependency>
- <groupId>com.openhtmltopdf</groupId>
- <artifactId>openhtmltopdf-svg-support</artifactId>
- <version>1.0.10</version>
- </dependency>
- <dependency>
- <groupId>com.microsoft.playwright</groupId>
- <artifactId>playwright</artifactId>
- <version>1.58.0</version>
- </dependency>
- <dependency>
- <groupId>com.azure</groupId>
- <artifactId>azure-storage-blob</artifactId>
- <version>12.28.0</version>
- </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>
|