quality-check-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sap.prd.mobile.ios.mios</groupId> <artifactId>quality-check-parent</artifactId> <version>1.0.0</version> </dependency>
<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"> <modelVersion>4.0.0</modelVersion> <groupId>com.sap.prd.mobile.ios.mios</groupId> <artifactId>quality-check-parent</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <url>https://github.com/sap-production/xcode-maven-plugin/tree/quality-check-parent</url> <name>Quality Check Parent Pom</name> <description> This parent pom contains common plugin definitions for code quality, e.g. jacoco and findbugs. </description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/sap-production/xcode-maven-plugin.git</connection> <developerConnection>scm:git:https://github.com/sap-production/xcode-maven-plugin.git</developerConnection> <url>https://github.com/sap-production/xcode-maven-plugin</url> </scm> <developers> <developer> <name>Irina Kirilova</name> <email>irina.kirilova@sap.com</email> </developer> <developer> <name>Marcus Holl</name> <email>marcus.holl@sap.com</email> </developer> <developer> <name>Alexander Link</name> <email>alexander.link@sap.com</email> </developer> </developers> <properties> <jacocoVersion>0.6.3.201306030806</jacocoVersion> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacocoVersion}</version> <executions> <execution> <id>prepare-agent</id> <phase>initialize</phase> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>verify</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>check</id> <phase>verify</phase> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule> <element>CLASS</element> <excludes> <exclude>*Test</exclude> </excludes> <limits> <limit> <counter>LINE</counter> <value>COVEREDRATIO</value> <minimum>0.00</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacocoVersion}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.5.2</version> <configuration> <includeTests>true</includeTests> <findbugsXmlOutput>true</findbugsXmlOutput> <xmlOutput>true</xmlOutput> </configuration> </plugin> </plugins> </reporting> <profiles> <profile> <id>gpg</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>gpg</id> <goals> <goal>sign</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>