124 lines
4.9 KiB
XML
124 lines
4.9 KiB
XML
<?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>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.7.8</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
<!-- 项目的基本信息-->
|
|
<groupId>com.bbyb.operating.examination</groupId>
|
|
<artifactId>bbyb-examination</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>bbyb-examination</name>
|
|
<description>bbyb-examination</description>
|
|
<!-- 项目jdk版本-->
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
</properties>
|
|
<!-- 依赖-->
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web-services</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>2.3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
<scope>runtime</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis</groupId>
|
|
<artifactId>mybatis-typehandlers-jsr310</artifactId>
|
|
<version>1.0.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- <build>-->
|
|
<!-- <pluginManagement>-->
|
|
<!-- <plugins>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
|
|
<!-- <configuration>-->
|
|
<!-- <excludes>-->
|
|
<!-- <exclude>-->
|
|
<!-- <groupId>org.projectlombok</groupId>-->
|
|
<!-- <artifactId>lombok</artifactId>-->
|
|
<!-- </exclude>-->
|
|
<!-- </excludes>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
<!-- </plugins>-->
|
|
<!-- </pluginManagement>-->
|
|
<!-- <plugins>-->
|
|
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.mybatis.generator</groupId>-->
|
|
<!-- <artifactId>mybatis-generator-maven-plugin</artifactId>-->
|
|
<!-- <version>1.4.1</version>-->
|
|
<!-- <dependencies>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.mybatis.generator</groupId>-->
|
|
<!-- <artifactId>mybatis-generator-core</artifactId>-->
|
|
<!-- <version>1.4.1</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>mysql</groupId>-->
|
|
<!-- <artifactId>mysql-connector-java</artifactId>-->
|
|
<!-- <version>5.1.49</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- </dependencies>-->
|
|
<!-- <configuration>-->
|
|
<!-- <configurationFile>src/main/resources/generator/generatorConfig.xml</configurationFile>-->
|
|
<!-- <verbose>true</verbose>-->
|
|
<!-- <overwrite>true</overwrite>-->
|
|
<!-- </configuration>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>Generate MyBatis Artifacts</id>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>generate</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
<!-- </plugins>-->
|
|
<!-- </build>-->
|
|
|
|
|
|
|
|
</project>
|