Skip to content
Snippets Groups Projects
Commit 03aa6466 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

added scripts to copy sources

parent 14fa14d5
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
DIR=`readlink -f \`dirname $0\``
cp -r $DIR/../*/*/src/* $DIR/src
#!/bin/bash
DIR=`readlink -f \`dirname $0\``
rm -r $DIR/src/main $DIR/src/test
......@@ -246,9 +246,10 @@
<configuration>
<scalaVersion>${scalaVersion}</scalaVersion>
<aggregate>true</aggregate>
<highlighting>true</highlighting>
<!-- other parameters -->
</configuration>
</plugin>
</plugin>
</plugins>
</build>
<reporting>
......@@ -257,6 +258,17 @@
<groupId>org.scoverage</groupId>
<artifactId>scoverage-maven-plugin</artifactId>
<version>${scoverage.plugin.version}</version>
<configuration>
<aggregate>true</aggregate> <!-- for aggregated report -->
<highlighting>true</highlighting>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>report</report> <!-- select only one report from: report, integration-report and report-only reporters -->
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment