Skip to content

Commit

Permalink
yegor256#289 added cobertura check
Browse files Browse the repository at this point in the history
  • Loading branch information
krzyk committed Sep 20, 2014
1 parent 0f25db6 commit abad1ff
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,14 @@
</profile>
<profile>
<id>qulice</id>
<dependencies>
<dependency>
<groupId>net.sourceforge.cobertura</groupId>
<artifactId>cobertura</artifactId>
<version>1.9.4.1</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
Expand All @@ -456,6 +464,16 @@
<exclude>duplicatefinder:.*</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<!--
<goal>instrument</goal>
<goal>check</goal>
-->
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/thindeck/api/mock/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,7 @@
* @author Yegor Bugayenko ([email protected])
* @version $Id$
* @since 0.1
* @todo #289 Increase test code coverage > 70% for this package (check by
* uncommenting executions in qulice plugin configuration)
*/
package com.thindeck.api.mock;
2 changes: 2 additions & 0 deletions src/main/java/com/thindeck/api/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,7 @@
* @author Yegor Bugayenko ([email protected])
* @version $Id$
* @since 0.1
* @todo #289 Increase test code coverage > 70% for this package (check by
* uncommenting executions in qulice plugin configuration)
*/
package com.thindeck.api;
2 changes: 2 additions & 0 deletions src/main/java/com/thindeck/cockpit/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,7 @@
* @author Yegor Bugayenko ([email protected])
* @version $Id$
* @since 0.1
* @todo #289 Increase test code coverage > 70% for this package (check by
* uncommenting executions in qulice plugin configuration)
*/
package com.thindeck.cockpit;
2 changes: 2 additions & 0 deletions src/main/java/com/thindeck/life/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,7 @@
* @author Yegor Bugayenko ([email protected])
* @version $Id$
* @since 0.1
* @todo #289 Increase test code coverage > 70% for this package (check by
* uncommenting executions in qulice plugin configuration)
*/
package com.thindeck.life;
2 changes: 2 additions & 0 deletions src/main/java/com/thindeck/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,7 @@
* @author Yegor Bugayenko ([email protected])
* @version $Id$
* @since 0.1
* @todo #289 Increase test code coverage > 70% for this package (check by
* uncommenting executions in qulice plugin configuration)
*/
package com.thindeck;
2 changes: 2 additions & 0 deletions src/main/java/com/thindeck/scenarios/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,7 @@
* @author Yegor Bugayenko ([email protected])
* @version $Id$
* @since 0.1
* @todo #289 Increase test code coverage > 70% for this package (check by
* uncommenting executions in qulice plugin configuration)
*/
package com.thindeck.scenarios;
2 changes: 2 additions & 0 deletions src/main/java/com/thindeck/steps/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,7 @@
* @author Yegor Bugayenko ([email protected])
* @version $Id$
* @since 0.1
* @todo #289 Increase code coverage > 70% for this package (check by
* uncommenting executions in qulice plugin configuration)
*/
package com.thindeck.steps;

0 comments on commit abad1ff

Please sign in to comment.