disabled duplicate check on report module

This commit is contained in:
markiantorno 2020-05-06 16:29:35 -04:00
parent f8fc0874af
commit ebf87e5276
1 changed files with 40 additions and 26 deletions

View File

@ -5,7 +5,7 @@
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.core</artifactId>
<version>4.2.23-SNAPSHOT</version>
<version>4.2.26-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
@ -20,28 +20,34 @@
<jacoco_version>0.8.5</jacoco_version>
</properties>
<!-- <dependencies>-->
<!-- <dependency>-->
<!-- <groupId>ca.uhn.hapi.fhir</groupId>-->
<!-- <artifactId>org.hl7.fhir.convertors</artifactId>-->
<!-- <version>${project.version}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>ca.uhn.hapi.fhir</groupId>-->
<!-- <artifactId>org.hl7.fhir.r5</artifactId>-->
<!-- <version>${project.version}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>ca.uhn.hapi.fhir</groupId>-->
<!-- <artifactId>org.hl7.fhir.utilities</artifactId>-->
<!-- <version>${project.version}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>ca.uhn.hapi.fhir</groupId>-->
<!-- <artifactId>org.hl7.fhir.validation</artifactId>-->
<!-- <version>${project.version}</version>-->
<!-- </dependency>-->
<!-- </dependencies>-->
<dependencies>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.convertors</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.r5</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.antlr</groupId>
<artifactId>ST4</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.utilities</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.validation</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
@ -63,13 +69,21 @@
<!-- Analyze class files only to exclude shaded agent JAR from report -->
<include>**/*.class</include>
</includes>
<excludes>
<!-- <exclude>**/HelpMojo.class</exclude>-->
</excludes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.basepom.maven</groupId>
<artifactId>duplicate-finder-maven-plugin</artifactId>
<version>1.4.0</version>
<configuration>
<!-- The report project pulls in resources from all the other packages, which results in some duplicate
classes being pulled in. This will need to be fixed eventually, but for now, we can just disable the
check on this package. It's only purpose is to aggregate the reports.-->
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>