deephacks / lmdbjni

LMDB for Java
Apache License 2.0
204 stars 28 forks source link

Code coverage report, coveralls.io #18

Closed krisskross closed 9 years ago

krisskross commented 9 years ago

Ideally, the following plugins would be all for lmdbjni-linux64. But it does not work because there are no classes generated for the linux project and for some reason jacoco-maven-plugin does not understand the include.

<plugin>
  <groupId>org.jacoco</groupId>
  <artifactId>jacoco-maven-plugin</artifactId>
  <version>0.7.2.201409121644</version>
  <configuration>
    <includes>
      <include>${basedir}/../lmdbjni/target/classes/**</include>
    </includes>
  </configuration>
  <executions>
    <execution>
      <id>prepare-agent</id>
      <goals>
        <goal>prepare-agent</goal>
      </goals>
    </execution>
    <execution>
      <id>report</id>
      <goals>
        <goal>report</goal>
      </goals>
    </execution>
  </executions>
</plugin>