无法访问子pom文件中的父库文件夹?

时间:2018-10-15 11:09:25

标签: maven maven-3

我如何将父lib文件夹jar文件访问到子模块pom文件中。

项目结构

test
  |___ test 1
          |___ pom.xml
  |___ test 2
          |___ pom.xml
  |___ libs
          |___ test1-1.0.0.jar
  |___ pom.xml

test2 pom.xml

<dependency>
    <groupId>test</groupId>
    <artifactId>test2</artifactId>
    <version>1.0.0</version>
    <systemPath>${main.basedir}/libs/test1-1.0.0.jar</systemPath>
    <scope>system</scope>
</dependency>

错误

[错误] test:test2:jar的'dependencies.dependency.systemPath'必须指定绝对路径,但为$ {main.basedir} /libs/test2-1.0.0.jar

谢谢

0 个答案:

没有答案