You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
<project name="JunitTest" default="test" basedir="."> <!-- Setting Varibles --> <property name="bindir" location="bin" /> <property name="srcdir" location="src" /> <property name="verbose" value="false" /> <!-- setting paths --> <path id="classpath.base" /> <path id="classpath.test"> <pathelement location="lib/junit-4.10.jar" /> <pathelement location="${bindir}" /> <pathelement location="${srcdir}" /> <path refid="classpath.base" /> </path> <target name="clover.html"> <clover-html-report outdir="clover_html" title="Example"/> </target> <!-- deleting up the class files in bin folder --> <target name="clean" depends="clover.html"> <delete verbose="${full-compile}"> <fileset dir="${bindir}" includes="**/*.class" /> </delete> </target> <!-- conpiling everything in src to bin --> <target name="compile" depends="clean"> <javac srcdir="${srcdir}" destdir="${bindir}" verbose="${verbose}"> <classpath refid="classpath.test" /> </javac> </target> <!-- running te tests --> <target name="test" depends="compile"> <junit> <classpath refid="classpath.test" /> <formatter type="brief" usefile="false" /> <test name="com.example.TestAll" /> </junit> </target> </project>
I have the code pasted above in my ant build file. I heep getting the following error. (it seems like I am missing a license)
BUILD FAILED
C:\eclipselocation\Example\build.xml:17: clover.com.atlassian.extras.decoder.api.LicenseDecoderNotFoundException: Could not find any valid decoders in [clover.com.atlassian.extras.decoder.v2.Version2LicenseDecoder@1081d2e, clover.com.atlassian.extras.decoder.v1.Version1LicenseDecoder@1b3f829] for license string <>
I am currently using a trial liscense. According to the documentation, using ant with eclipse shouldn not require an additional license, when I run the tests without the build file Clover works fine.
Please download the Clover-for-Ant and add
<taskdef resource="cloverlib.xml" classpath="/path/to/your/clover.jar"/> <clover-env/>
at the beginning of your build.xml file.
Optionally, if your license file is stored in a non-standard location, define the
<property name="clover.license.path" value="/full/path/to/clover.license"/>
property.
See also the:
Regards
Marek
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you have your license key pasted in pom.xml in the <license> option? If yes, then did you keep newline characters? Did you encapsulate the key in a CDATA section?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello everyone, I am a product manager in the Jira Cloud team focused on making sure our customers have a delightful experience using our products. Towards that goal, one of the areas which is extr...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.