30 December 2020

Eclipse: 2.0.0.202012311434

Maven: 1.1.5

Gradle: 1.1.5

Download for eclipse

Install from marketplace:

  1. Start Eclipse (version 4.4 or greater)
  2. Drag to your running Eclipse* workspace. *Requires Eclipse Marketplace Client

Or install directly from the update site:

  1. Start Eclipse
  2. Select Help>Install New Software…
  3. Work with: https://vmlens.com/download/site/

Next: Test your java applications with vmlens.

Download for maven

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.

Download for gradle

To use vmlens with gradle, include it as plugin in build.gradle. 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.

License

vmlens is open source, released under the Apache License 2.0.

© 2020 vmlens Legal Notice Privacy Policy