开发者

Maven Dependencies

I am trying build a jar file with some depe开发者_开发问答ndencies. Initially i have installed all the jar file dependencies with mvn install:install-file command. Now Instead of that i given as below.

 < dependency>
        < groupId> POP< /groupId>
        < artifactId>ROCK< /artifactId>
        < version>1< /version>
        < scope>system< /scope>
        < systemPath>../Environment/lib/jdk15-131.jar< /systemPath>
   < /dependency>

Now it does not relative path, It is asking for absolute path. Can you please suggest how can i give relative path?

Regards Gnash


What about this?

< systemPath>${basedir}/../Environment/lib/jdk15-131.jar< /systemPath>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜