<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <parent> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir</artifactId> <version>7.7.14-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>hapi-fhir-checkstyle</artifactId> <packaging>jar</packaging> <name>HAPI FHIR - Checkstyle</name> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${checkstyle_version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <optional>true</optional> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${checkstyle_version}</version> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-checkstyle</artifactId> <!-- Remember to bump this when you upgrade the version --> <version>${project.version}</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> </build> <profiles> <!-- For releases, we need to generate javadoc and sources JAR --> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>deployToSonatype</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.0</version> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>CHECKSTYLE</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <excludes>**/osgi/**/*, **/.mvn/**/*, **/.mvn_/**/*</excludes> <sourceDirectories> <!--scan base project directory to include all modules--> <!--suppress UnresolvedMavenProperty --> <directory>${maven.multiModuleProjectDirectory}/</directory> </sourceDirectories> <includeTestSourceDirectory>true</includeTestSourceDirectory> <!--suppress UnresolvedMavenProperty --> <configLocation>${maven.multiModuleProjectDirectory}/hapi-fhir-checkstyle/src/checkstyle/hapi-base-checkstyle.xml</configLocation> <!--suppress UnresolvedMavenProperty --> <suppressionsLocation>${maven.multiModuleProjectDirectory}/hapi-fhir-checkstyle/src/checkstyle/hapi-base-checkstyle-suppression.xml</suppressionsLocation> <inputEncoding>UTF-8</inputEncoding> <consoleOutput>true</consoleOutput> </configuration> <executions> <execution> <id>checkstyle-across-all-modules</id> <phase>install</phase> <goals> <goal>check</goal> </goals> </execution> <execution> <id>hapi-single-module-checkstyle</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>