| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- 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>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.3.5.RELEASE</version>
- </parent>
- <groupId>com.poyee</groupId>
- <artifactId>tzy-admin</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>tzy-admin</name>
- <description>拍卖管理系统</description>
- <properties>
- <module.version>1.0-SNAPSHOT</module.version>
- <java.version>1.8</java.version>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <springboot.version>2.3.5.RELEASE</springboot.version>
- <druid.version>1.2.1</druid.version>
- <commons.io.version>2.5</commons.io.version>
- <fastjson.version>1.2.74</fastjson.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <version>${springboot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.12</version>
- <optional>true</optional>
- </dependency>
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <!--base-->
- <dependency>
- <groupId>com.poyee</groupId>
- <artifactId>py-base</artifactId>
- <version>${module.version}</version>
- </dependency>
- <dependency>
- <groupId>com.poyee</groupId>
- <artifactId>py-goods</artifactId>
- <version>${module.version}</version>
- </dependency>
- <dependency>
- <groupId>com.poyee</groupId>
- <artifactId>py-order</artifactId>
- <version>${module.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <modules>
- <module>py-starter</module>
- <module>py-base</module>
- <module>py-goods</module>
- <module>py-order</module>
- </modules>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- <encoding>${project.build.sourceEncoding}</encoding>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|