Skip to content

Commit

Permalink
Merge branch 'release-1.4' of https://github.com/project-sunbird/sunb…
Browse files Browse the repository at this point in the history
…ird-lms-mw into release-1.4

Issue #1 feat:merge
  • Loading branch information
AMIT KUMAR committed Dec 28, 2017
2 parents 948e900 + 09fe772 commit 78eaa1b
Showing 1 changed file with 25 additions and 35 deletions.
60 changes: 25 additions & 35 deletions actors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,25 +205,30 @@
</executions>
</plugin>

<!-- <plugin>
<groupId>org.openclover</groupId>
<artifactId>clover-maven-plugin</artifactId>
<version>4.2.0</version>
<configuration>
<contextFilters>try,catch,static</contextFilters>
<targetPercentage>0%</targetPercentage>
<scope>compile</scope>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>instrument</goal>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin> -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.5.201505241946</version>
<configuration>
<destFile>${basedir}/target/coverage-reports/jacoco-unit.exec</destFile>
<dataFile>${basedir}/target/coverage-reports/jacoco-unit.exec</dataFile>
</configuration>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-site</id>
<phase>package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -239,7 +244,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20</version>
<configuration>
<skipTests>true</skipTests>
<!-- <skipTests>true</skipTests> -->
<includes>
<include>**/*Spec.java</include>
<include>**/*Test.java</include>
Expand All @@ -256,20 +261,5 @@
</configuration>
</plugin>
</plugins>

</build>

<!-- <reporting>
<plugins>
<plugin>
<groupId>org.openclover</groupId>
<artifactId>clover-maven-plugin</artifactId>
<configuration>
<generatePdf>true</generatePdf>
<generateXml>true</generateXml>
</configuration>
</plugin>
</plugins>
</reporting> -->

</project>

0 comments on commit 78eaa1b

Please sign in to comment.