Questions tagged [tattletale]

Tattletale is an open source JBoss Community project that helps determine the packaging and dependency structures of Java jar, war, and ear packages.

Tattletale provides a full view of the application project along with its dependencies.

Some of the main features of tattletale are:

  • Duplicated jar files.
  • Container and JDK provided JAR files that are being packaged in the application (anti-pattern).
  • Deprecated/black listed APIs being used.
  • Classes included with locations in a jar

It also provides several other great features. Read more at the tattletale website.

4 questions
4
votes
2 answers

How to run JBoss TattleTale from inside Gradle build

I am in love with JBoss TattleTale. Typically, in my Ant builds, I follow the docs to define the Tattletale tasks and then run them like so:
unfettered
  • 351
  • 3
  • 13
2
votes
1 answer

Resolving "Multiple Jar files" aka "scanned from multiple locations"

I am working on a jetty service, and when starting it, I get a lot of: SomeClass scanned from multiple locations: jar: jar1!Someclass.class, jar2!Someclass.class So a single class is provided by two jars, and which I get on runtime is undefined,…
2
votes
3 answers

How to use Apache Tattletale to analyze duplicate Jar/APIs used in class path

In my project they have used more than 225+ jar files which causing memory issue, while searching on net i come to know Apache Tattletale will analyze and give a report of duplicate classes and JAR/APIs used by the application (Classpath). So i…
Rajesh Hatwar
  • 1,843
  • 6
  • 39
  • 58
1
vote
1 answer

Running JBoss Tattletale on a Tomcat war file returns no output

I want to run JBoss Tattletale on a war file that my team has developed and generate all available reports. I downloaded Tattletale 1.1.2 final and unzipped the file into a directory in Windows 7. I created a report folder and copied my war into…
k-den
  • 853
  • 13
  • 28