如何使用 ANT 在构建时将 JAR 内的目录包含到类路径中?
我在项目的 lib 文件夹中有一个 JAR,并在使用 ANT 构建时尝试获取包含类路径上的属性文件的目录结构。有什么想法可以最好地在类路径上获得该结构吗?
谢谢!
I have a JAR in my lib folder of the project and trying to get the directory structure that contains property files on the classpath when building using ANT. Any ideas how best to the get that structure on the classpath?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您想使用
property< 将属性文件加载到构建中/code>
任务。
如果是这种情况,有几种选择。
首先,您可以使用任务的
url
形式,使用 jar url:或者,您可以使用
resource
形式,并将 jar 指定为类路径:如果您想做其他事情而不是加载属性,查看
javaresource
- 许多任务都是能够将资源作为输入,因此您应该能够找到一种方法来做您想做的事情。I'm assuming you want to load a properties file into your build using the
property
task.If this is the case, there are a couple of options.
First you could use the
url
form of the task, using a jar url:Alternatively you could use the
resource
form, and specify the jar as the classpath:If it's something else you want to do rather than load the properties, look into
javaresource
- many tasks are able to take a resource as input so you should be able to find a way to do what you want.