| | |
| | | |
| | | <dependencies> |
| | | |
| | | <dependency> |
| | | <groupId>com.baomidou</groupId> |
| | | <artifactId>mybatis-plus-boot-starter</artifactId> |
| | | <version>3.5.2</version> |
| | | </dependency> |
| | | |
| | | <!-- Spring框架基本的核心工具 --> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | |
| | | <dependency> |
| | | <groupId>com.github.pagehelper</groupId> |
| | | <artifactId>pagehelper-spring-boot-starter</artifactId> |
| | | <exclusions> |
| | | <exclusion> |
| | | <groupId>org.mybatis</groupId> |
| | | <artifactId>mybatis</artifactId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <artifactId>mybatis-spring</artifactId> |
| | | <groupId>org.mybatis</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | |
| | | </dependency> |
| | | |
| | | <!-- 自定义验证注解 --> |
| | |
| | | <groupId>javax.servlet</groupId> |
| | | <artifactId>javax.servlet-api</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.baomidou</groupId> |
| | | <artifactId>mybatis-plus-annotation</artifactId> |
| | | <version>3.5.5</version> |
| | | <scope>compile</scope> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | <!-- <build>--> |
| | | <!-- <plugins>--> |
| | | |
| | | <!-- <plugin>--> |
| | | <!-- <groupId>org.apache.maven.plugins</groupId>--> |
| | | <!-- <artifactId>maven-compiler-plugin</artifactId>--> |
| | | <!-- <version>3.0</version>--> |
| | | <!-- <configuration>--> |
| | | <!-- <compilerArguments>--> |
| | | <!-- <Xlint />--> |
| | | <!-- </compilerArguments>--> |
| | | <!-- <verbose>true</verbose>--> |
| | | <!-- <source>${java.version}</source>--> |
| | | <!-- <target>${java.version}</target>--> |
| | | <!-- <showWarnings>true</showWarnings>--> |
| | | <!-- <compilerArguments>--> |
| | | <!-- <verbose />--> |
| | | <!-- <bootclasspath>{java.home}/../jre/lib/rt.jar</bootclasspath>--> |
| | | <!-- </compilerArguments>--> |
| | | <!-- </configuration>--> |
| | | <!-- </plugin>--> |
| | | <!-- </plugins>--> |
| | | <!-- </build>--> |
| | | </project> |