30 December 2020
Eclipse: 2.0.0.202012311434
Maven: 1.1.5
Gradle: 1.1.5
Install from marketplace:
Or install directly from the update site:
Next: Test your java applications with vmlens.
To use vmlens with maven, configure a plugin tag to tell maven that the vmlens plugin should be executed at the test phase. And include the jar com.vmlens.api as test dependency.
<project> <!-- to include the class AllInterleavings into the test class path. --> <dependency> <groupId>com.vmlens</groupId> <artifactId>api</artifactId> <version>1.1.5</version> <scope>test</scope> </dependency> <build> <plugins> <!-- to run the vmlens maven plugin during the maven test phase --> <plugin> <groupId>com.vmlens</groupId> <artifactId>interleave</artifactId> <version>1.1.5</version> <executions> <execution> <goals> <goal>test</goal> </goals> </execution> </executions> </plugin> ... </plugins> </build> ... </project>
Next: The vmlens maven report.
To use vmlens with gradle, include it as plugin in build.
. And include the jar com.vmlens.api as test dependency.
plugins { id "com.vmlens.interleave" version "1.1.5" } repositories { jcenter() } dependencies { testImplementation('com.vmlens:api:1.1.5' ) }
Now you can run the tests using the task interleave, e.g.:gradle interleave
Next: The vmlens gradle report.
vmlens is open source, released under the Apache License 2.0.
© 2020 vmlens Legal Notice Privacy Policy