我正在开发spring boot应用程序(包括rest调用),并且希望将其托管在heroku上。应用程序在我的本地计算机上运行完美。 下面是项目结构
.git
foldera
|
Mainclass
Pom.xml
folderb
|
other javacode
pom.xml
folderc
|
other javacode
pom.xml
Pom.xml(within root folder)
根文件夹的pom.xml显示如下
<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>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.1.RELEASE</version>
</parent>
<groupId>root</groupId>
<artifactId>pomroot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Server Spring Boot</name>
<description>Spring boot server for svmapp</description>
<properties>
<java.version>1.8</java.version>
</properties>
<modules>
<module>./foldera</module>
</modules>
</project>
我正在使用./foldera来使用模块标签引用子文件夹。但这不起作用。
所有文件夹都是Maven文件夹,并已添加到类路径中。现在,我需要从父文件夹中引用文件夹a的Pom.xml。
如何实现?