carbon-identity-event-handler-notification-coverage-report
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wso2.carbon.identity.event.handler.notification</groupId> <artifactId>carbon-identity-event-handler-notification-coverage-report</artifactId> <version>1.0.7</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <groupId>org.wso2.carbon.identity.event.handler.notification</groupId> <artifactId>carbon-identity-event-handler-notification-tests</artifactId> <version>1.0.7</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>carbon-identity-event-handler-notification-coverage-report</artifactId> <name>WSO2 Carbon Identity Notification Handler - Test Coverage</name> <description>Coverage reports for Carbon Identity Notification handler</description> <url>http://wso2.com</url> <dependencies> <dependency> <groupId>org.jacoco</groupId> <artifactId>org.jacoco.ant</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>with-tests</id> <activation> <property> <name>!maven.test.skip</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-jacoco-dependencies</id> <phase>compile</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}</outputDirectory> <includeTypes>jar</includeTypes> <includeArtifactIds>org.jacoco.ant</includeArtifactIds> <stripVersion>true</stripVersion> </configuration> </execution> </executions> </plugin> <!--Ant plugin - Merge Jacoco Reports--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <target xmlns:jacoco="antlib:org.jacoco.ant"> <taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml"> <classpath path="${project.build.directory}" /> </taskdef> <jacoco:report> <executiondata> <fileset dir="../osgi-tests/target"> <include name="jacoco.exec" /> </fileset> </executiondata> <structure name="Carbon Identity Management - Coverage Report"> <classfiles> <fileset dir="../../components/email-mgt/org.wso2.carbon.email.mgt/target/classes"> <exclude name="**/*Constants*.class" /> <exclude name="**/*Exception.class" /> <exclude name="**/org/wso2/carbon/email/mgt/model/*" /> </fileset> <fileset dir="../../components/event-handler-notification/org.wso2.carbon.identity.event.handler.notification/target/classes"> <exclude name="**/*Constants*.class" /> <exclude name="**/*Exception.class" /> </fileset> </classfiles> <sourcefiles encoding="UTF-8"> <fileset dir="../../components/email-mgt/org.wso2.carbon.email.mgt/src" /> </sourcefiles> <sourcefiles encoding="UTF-8"> <fileset dir="../../components/event-handler-notification/org.wso2.carbon.identity.event.handler.notification/src" /> </sourcefiles> </structure> <html destdir="${project.build.directory}/site/jacoco" /> </jacoco:report> </target> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.jacoco</groupId> <artifactId>org.jacoco.ant</artifactId> <version>${org.jacoco.ant.version}</version> </dependency> </dependencies> </plugin> </plugins> </build> </profile> </profiles> </project>