创建父工程,打包方式指定为 pom
<groupId>com.example</groupId> <artifactId>SleuthMain</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>pom</packaging>
子工程引用父工程,引用父工程的gav
<parent> <groupId>com.example</groupId> <artifactId>SleuthMain</artifactId> <version>0.0.1-SNAPSHOT</version> </parent>