Skip to content

Commit

Permalink
Merge pull request #77 from knowsys/ci-setup
Browse files Browse the repository at this point in the history
Improve CI configuration
  • Loading branch information
mkroetzsch authored Apr 16, 2019
2 parents 279d27f + 2378346 commit f71d0f2
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions vlog4j-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,27 @@
<version>${openrdf.sesame.version}</version>
</dependency>

<dependency>
<groupId>fr.lirmm.graphik</groupId>
<artifactId>graal-io-dlgp</artifactId>
<version>${graal.version}</version>
</dependency>
<dependency>
<groupId>fr.lirmm.graphik</groupId>
<artifactId>graal-io-dlgp</artifactId>
<version>${graal.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<!-- Disable code coverage computation for this module: -->
<!-- example/benchmark code needs no testing. -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration combine.self="override">
<skip>true</skip>
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit f71d0f2

Please sign in to comment.