当前位置: 首页>后端>正文

Mvn-pom.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>
? ? <parent>
? ? ? ? <artifactId> app-parent</artifactId>
? ? ? ? <groupId>com.ob</groupId>
? ? ? ? <version>1.0.1</version>
? ? ? ? <relativePath>../app-parent</relativePath>
? ? </parent>
? ? <groupId>com.ob.app</groupId>
? ? <artifactId>app-myapp</artifactId>
? ? <version>1.0.0</version>
? ? <name>${project.artifactId}</name>
? ? <dependencies>
? ? ? ? <dependency>
? ? ? ? ? ? <groupId>com.springframework.boot</groupId>
? ? ? ? ? ? <artifactId>spring.boot-starter</artifactId>
? ? ? ? </dependency>
? ? ? ? <dependency>
? ? ? ? ? ? <groupId>cn.hutool</groupId>
? ? ? ? ? ? <artifactId>hutool-all</artifactId>
? ? ? ? </dependency>
? ? </dependencies>

</project>

```


https://www.xamrdz.com/backend/3wa1937811.html

相关文章: