0

我试图在 WTK 中创建一个用于 SVN 提交的项目。我的问题是,每次我创建 .jar 包时,这些 .svn/ 目录都会出现在其中...

Wireless Toolkit 是否有任何构建脚本可供我修改以避免将 .svn 文件夹包含到包中?或者也许更好的解决方案?

4

1 回答 1

1

You can build an Ant script to package explicitly the directories you need using the jar task. Ant also includes an SVN extension to allow exporting a clean tree without the .svn files. Ant by default excludes .svn directories as noted here.

于 2010-12-09T11:39:21.407 回答