Tattletale 1.1.0.Beta2发布

作者:    |      

这是Java依赖分析工具Tattletale的1.1版本第二个beta版。

所有用户都应该升级到这个版本。

完整的发布说明在此处这里

构建环境

本版本的重点是全面支持Apache AntApache Maven构建环境。此外,现在可以直接在插件中指定所有配置参数,而不是使用配置文件。

请参阅用户指南以获取有关如何将Tattletale集成到您的构建环境中的更多信息。

Apache Ant

使用report任务,例如

<tattletale:report source="${jar.dir]" destination="${report.dir}"/>

Apache Maven

使用reportmojo,例如

<plugin>
  <groupId>org.jboss.tattletale</groupId>
  <artifactId>tattletale-maven</artifactId>
  <!-- The version of the plugin you want to use -->
  <version>1.1.0.Beta2</version>
  <executions>
    <execution>
     <goals>
       <goal>report</goal>
     </goals>
    </execution>
  </executions>
  <configuration>
    <!-- This is the location which will be scanned for generating tattletale reports --> 
    <source>/absolutepath/to/source/dir</source>
    <!-- This is where the reports will be generated -->
    <destination>/absolute/path/to/reports/dir</destination>
  </configuration>
</plugin>

新报告

此版本添加了

  • 循环依赖

报告,这将帮助您在项目中找到循环依赖。是时候将这些存档拆分到适当的结构中!

未来的道路

下一个开发周期将专注于与Hudson环境的集成,所以如果您想帮忙,请到我们的论坛。

对于那些即将摇滚的人,我们向您致敬!

[网站] [下载] [JIRA] [论坛]


返回顶部