1 Reply Latest reply on Apr 3, 2013 7:54 AM by jesper.pedersen

    Tattletale Maven Plugin

    varunraj23

      Hi,

       

      I am trying to use the below snippet in my maven script.

       

      <build>

        <plugins>

          <plugin>

            <groupId>org.jboss.tattletale</groupId>

            <artifactId>tattletale-maven</artifactId>

            <!-- The version of the plugin you want to use -->

            <version>1.1.0.Final</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>

        </plugins>

      </build>

       

      I am having a concern abt the absolute path to source that needs to be given in the above snippet. Should the source dir be the directory where we have the source files? Or should we give the target directory as the absolute path?