| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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>
- <parent>
- <groupId>com.education</groupId>
- <artifactId>education</artifactId>
- <version>1.0.5-RELEASE</version>
- </parent>
- <groupId>com.education.api</groupId>
- <artifactId>education-api</artifactId>
- <version>1.0.5-RELEASE</version>
- <name>education-admin-api</name>
- <description>基于Spring Boot构建的智能教育平台</description>
- <dependencies>
- <dependency>
- <artifactId>education-common-api</artifactId>
- <groupId>com.education.common.api</groupId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <artifactId>education-canal</artifactId>
- <groupId>com.education.canal</groupId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.xuwei-k</groupId>
- <artifactId>html2image</artifactId>
- <version>0.1.0</version>
- </dependency>
- <dependency>
- <artifactId>education-ai</artifactId>
- <groupId>com.education.ai</groupId>
- <version>1.0.5-RELEASE</version>
- </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>
- <version>2.20.1</version>
- <configuration>
- <!-- 不指定单元测试 -->
- <skipTests>true</skipTests>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|