将 ant 属性集转换为文件集
我有一个属性集,其中属性的值指定了我想要包含在 jar 中的文件列表。但我似乎无法弄清楚如何从属性集构建 jar,只有文件集。如何将 propertyset 的值转换为 ant 文件集?
I have a propertyset, where the values of the properties in the set specify a list of files I want to include in a jar. But I can't seem to figure out how to build a jar from a propertyset, only a fileset. How can I convert the values of a propertyset into an ant fileset?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我做了一些工作并找到了一种有效的方法。我构建了一个以逗号分隔的属性值列表,然后将其作为文件集的include属性传递。
I did some work and found an approach that works. I build a comma-separated list of the property values, then pass that as the include attribute of a fileset.