我正在使用以下内容在我的Maven pom.xml中建立类路径

                    <manifest>
                        <addClasspath>true</addClasspath>
                        <classpathPrefix>lib/</classpathPrefix>
                    </manifest>

在“lib”下有一个目录,我也想将其添加到类路径中,但似乎没有找到它。

有什么办法吗?

最佳答案

您不能使用jar插件来做到这一点。尝试组装插件,它更灵活

关于java - 在Maven pom.xml中将子目录与classpathPrefix一起使用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28691234/

10-10 23:14