123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <?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>
- <groupId>cn.com.qmth.am</groupId>
- <artifactId>ai-marking</artifactId>
- <version>1.0.0</version>
- <packaging>jar</packaging>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.3.12.RELEASE</version>
- <relativePath />
- </parent>
- <properties>
- <spring-boot.version>2.3.12.RELEASE</spring-boot.version>
- <mybatis-plus.version>3.4.3.3</mybatis-plus.version>
- <maven-compiler-version>3.8.1</maven-compiler-version>
- <maven-surefire-version>2.22.2</maven-surefire-version>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <qmth-boot-version>1.0.5</qmth-boot-version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>starter-api</artifactId>
- <version>${qmth-boot-version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-ai</artifactId>
- <version>${qmth-boot-version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>data-mybatis-plus</artifactId>
- <version>${qmth-boot-version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-schedule</artifactId>
- <version>${qmth-boot-version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.jeffreyning</groupId>
- <artifactId>mybatisplus-plus</artifactId>
- <version>1.5.1-RELEASE</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-solar</artifactId>
- <version>${qmth-boot-version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-fss</artifactId>
- <version>${qmth-boot-version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-cache</artifactId>
- <version>${qmth-boot-version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-retrofit</artifactId>
- <version>${qmth-boot-version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-concurrent</artifactId>
- <version>${qmth-boot-version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>tools-poi</artifactId>
- <version>${qmth-boot-version}</version>
- </dependency>
- <!-- Swagger jars start -->
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>knife4j-spring-boot-starter</artifactId>
- <version>2.0.9</version>
- </dependency>
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-annotations</artifactId>
- <version>1.5.24</version>
- </dependency>
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-models</artifactId>
- <version>1.5.24</version>
- </dependency>
- <!-- Swagger jars end -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.83</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-collections4</artifactId>
- <version>4.4</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.8.0</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-text</artifactId>
- <version>1.10.0</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-math3</artifactId>
- <version>3.6.1</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>${project.artifactId}</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|