cobertura-metrics-model
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.leeyazhou</groupId> <artifactId>cobertura-metrics-model</artifactId> <version>2.1.2.RELEASE</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <!-- +=============================================== --> <!-- | Section 1: Project information --> <!-- +=============================================== --> <parent> <groupId>com.github.leeyazhou</groupId> <artifactId>cobertura-parent</artifactId> <version>2.1.2.RELEASE</version> </parent> <artifactId>cobertura-metrics-model</artifactId> <packaging>jar</packaging> <name>${project.artifactId}</name> <url>${url.prefix}/${path.in.reactor}</url> <properties> <path.in.reactor>cobertura-metrics-model</path.in.reactor> </properties> <!-- +=============================================== --> <!-- | Section 2: Dependency (management) settings --> <!-- +=============================================== --> <dependencies> <!-- Internal dependencies --> <dependency> <groupId>com.github.leeyazhou</groupId> <artifactId>cobertura-annotations-api</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>com.github.leeyazhou</groupId> <artifactId>cobertura-conversion-api</artifactId> <version>${project.parent.version}</version> </dependency> <!-- External dependencies. --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>se.jguru.nazgul.core.xmlbinding.spi.jaxb</groupId> <artifactId>nazgul-core-xmlbinding-spi-jaxb</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>se.jguru.nazgul.test.xmlbinding</groupId> <artifactId>nazgul-core-xmlbinding-test</artifactId> <scope>test</scope> </dependency> </dependencies> <!-- +=============================================== --> <!-- | Section 3: Build settings --> <!-- +=============================================== --> <!-- build> <plugins> <plugin> <groupId>org.apache.openjpa</groupId> <artifactId>openjpa-maven-plugin</artifactId> <version>${openjpa.version}</version> <executions> <execution> <id>enhancer</id> <phase>process-classes</phase> <goals> <goal>enhance</goal> </goals> <configuration> <includes>**/*.class</includes> <persistenceXmlFile>${basedir}/src/main/weaving/openjpa/tree-model-persistence.xml </persistenceXmlFile> </configuration> </execution> </executions> <configuration> <includes>**/*.class</includes> </configuration> <dependencies> <dependency> <groupId>org.apache.openjpa</groupId> <artifactId>openjpa</artifactId> <version>${openjpa.version}</version> </dependency> </dependencies> </plugin> </plugins> </build --> <!-- +=============================================== --> <!-- | Section 4: External systems --> <!-- +=============================================== --> <!-- Define settings for Maven's site plugin. --> <distributionManagement> <site> <id>coberturaSite</id> <name>coberturaSite</name> <url>${distro.url.prefix}/${path.in.reactor}</url> </site> </distributionManagement> <!-- Define Maven's Git integration. --> <scm> <connection>${scm.conn}</connection> <developerConnection>${scm.devConnection}</developerConnection> <url>${reactor.url.remote.prefix}/${reactor.name}</url> <tag>HEAD</tag> </scm> </project>