Files
wms1.0/wms_pro/hd/pom.xml

43 lines
1.7 KiB
XML
Raw Normal View History

2022-06-27 19:25:41 +08:00
<?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>
2024-02-02 14:27:17 +08:00
<!-- <parent>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-parent</artifactId>-->
<!-- <version>2.6.2</version>-->
<!-- <relativePath/> &lt;!&ndash; lookup parent from repository &ndash;&gt;-->
<!-- </parent>-->
2022-06-27 19:25:41 +08:00
<groupId>org.nl</groupId>
2024-02-02 09:59:41 +08:00
<artifactId>wms</artifactId>
2022-06-27 19:25:41 +08:00
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>开发平台</name>
2023-05-05 17:45:13 +08:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
2023-05-05 18:37:26 +08:00
<resource.delimiter>@</resource.delimiter>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
2023-05-05 17:45:13 +08:00
</properties>
2024-02-02 14:27:17 +08:00
<dependencyManagement>
<dependencies>
<!-- SpringBoot的依赖配置-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.6.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
2022-06-27 19:25:41 +08:00
<modules>
<module>nladmin-system</module>
</modules>
</project>