128 lines
4.1 KiB
XML
128 lines
4.1 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.tiesheng</groupId>
|
|
<artifactId>springboot-parent</artifactId>
|
|
<version>0.1.5</version>
|
|
<packaging>pom</packaging>
|
|
<name>springboot-parent</name>
|
|
<description>杭州铁晟科技有限公司基础依赖</description>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.6.4</version>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>springboot-ademo</module>
|
|
<module>springboot-db-migration</module>
|
|
<module>springboot-login</module>
|
|
<module>springboot-web</module>
|
|
<module>springboot-util</module>
|
|
<module>springboot-poi</module>
|
|
<module>springboot-platform</module>
|
|
<module>springboot-message</module>
|
|
<module>springboot-encrypt</module>
|
|
<module>springboot-annotation</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>zeng_wenhao</name>
|
|
<email>980287353@qq.com</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.tiesheng</groupId>
|
|
<artifactId>springboot-db-migration</artifactId>
|
|
<version>0.1.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng</groupId>
|
|
<artifactId>springboot-login</artifactId>
|
|
<version>0.1.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng</groupId>
|
|
<artifactId>springboot-web</artifactId>
|
|
<version>0.1.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng</groupId>
|
|
<artifactId>springboot-util</artifactId>
|
|
<version>0.1.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng</groupId>
|
|
<artifactId>springboot-platform</artifactId>
|
|
<version>0.1.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng</groupId>
|
|
<artifactId>springboot-message</artifactId>
|
|
<version>0.1.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng</groupId>
|
|
<artifactId>springboot-encrypt</artifactId>
|
|
<version>0.1.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng</groupId>
|
|
<artifactId>springboot-annotation</artifactId>
|
|
<version>0.1.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng</groupId>
|
|
<artifactId>springboot-poi</artifactId>
|
|
<version>0.1.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
<version>3.1.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>3.5.1</version>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|