java-11-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.microsoft.maven</groupId> <artifactId>java-11-parent</artifactId> <version>11.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.microsoft.maven</groupId> <artifactId>java-11-parent</artifactId> <version>11.0.0</version> <packaging>pom</packaging> <name>Maven Parent for Java 11</name> <description>Maven Parent for Java 11</description> <url>https://github.com/microsoft/maven-java-parent</url> <parent> <groupId>com.microsoft.maven</groupId> <artifactId>java-parent-bom</artifactId> <version>1.0.0</version> </parent> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <properties> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle.version}</version> <dependencies> <dependency> <groupId>com.microsoft.maven</groupId> <artifactId>build-tools</artifactId> <version>${maven-build-tools.version}</version> </dependency> </dependencies> <configuration> <configLocation>checkstyle/checkstyle.xml</configLocation> <suppressionsLocation>checkstyle/checkstyle-suppressions.xml</suppressionsLocation> <headerLocation>checkstyle/java.header</headerLocation> <encoding>UTF-8</encoding> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <includeTestSourceDirectory>true</includeTestSourceDirectory> <linkXRef>false</linkXRef> </configuration> <executions> <execution> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>${maven-spotbugs.version}</version> <dependencies> <dependency> <groupId>com.microsoft.maven</groupId> <artifactId>build-tools</artifactId> <version>${maven-build-tools.version}</version> </dependency> </dependencies> <configuration> <effort>Max</effort> <threshold>Low</threshold> <xmlOutput>true</xmlOutput> <spotbugsXmlOutputDirectory>${project.build.directory}/spotbugs</spotbugsXmlOutputDirectory> <excludeFilterFile>spotbugs/spotbugs-exclude.xml</excludeFilterFile> </configuration> <executions> <execution> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>