java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>nl.demon.shadowland.freedumbytes.maven</groupId> <artifactId>java</artifactId> <version>4.2</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>nl.demon.shadowland.freedumbytes.maven</groupId> <artifactId>setup</artifactId> <version>4.2</version> </parent> <artifactId>java</artifactId> <packaging>pom</packaging> <name>${organizationName} Maven Setup Java</name> <description>Extends Setup with Java build and reporting settings.</description> <inceptionYear>2010</inceptionYear> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>${mavenSurefireReportPluginVersion}</version> <configuration> <skipSurefireReport>${skipUnitTests}</skipSurefireReport> <skipFailsafeReport>${skipIntegrationTests}</skipFailsafeReport> <linkXRef>${linkXRef}</linkXRef> <aggregate>${aggregateSurefireReports}</aggregate> </configuration> <reportSets> <reportSet> <reports> <report>report-only</report> <report>failsafe-report-only</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>