使用 Ant 确保属性文件仅包含唯一条目

发布于 2024-07-16 19:16:10 字数 64 浏览 6 评论 0原文

Ant 中有没有一种方法可以检查指定的属性文件是否只包含唯一键? 如果发现任何重复项,则构建失败将是必需的行为。

Is there a way in Ant which can check that a specified properties file only contains unique keys? A build failure would be the required behaviour if any duplicates are found.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

翻了热茶 2024-07-23 19:16:10

rscbundlecheck 执行重复密钥检查和更多适合国际化的验证。 来自他们网站的简介:

用于检查 Java 的 Ant 任务
资源包。 它检查
每个包中所有密钥的存在,
重复钥匙、禁止的存在
字符(例如特殊字符,如
变音符号)和连续使用
占位符。

ant 脚本示例:

<taskdef name="resourceCheck" classpathref="build.classpath" classname="org.dyndns.fichtner.rsccheck.ant.RscBundleCheckTask"/>
<resourceCheck>
    <fileset file="my-properties-file.properties"/>
</resourceCheck>

其中 build.classpath 包含可用的资源检查二进制 jar 此处

rscbundlecheck does the duplicate key check and more validations suitable for internationalization. Blurb from their website:

Ant Task for checking Java
Resourcebundles. It checks for
existence of all keys in each bundle,
duplicate keys, existence of forbidden
chars (e.g. special characters like
umlauts) and continuous usage of
placeholders.

Example ant script:

<taskdef name="resourceCheck" classpathref="build.classpath" classname="org.dyndns.fichtner.rsccheck.ant.RscBundleCheckTask"/>
<resourceCheck>
    <fileset file="my-properties-file.properties"/>
</resourceCheck>

Where build.classpath contains the resourceCheck binary jar available here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文