mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-06 04:48:10 +00:00
disabled duplicate check on report module
This commit is contained in:
parent
f8fc0874af
commit
ebf87e5276
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>ca.uhn.hapi.fhir</groupId>
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||||||
<artifactId>org.hl7.fhir.core</artifactId>
|
<artifactId>org.hl7.fhir.core</artifactId>
|
||||||
<version>4.2.23-SNAPSHOT</version>
|
<version>4.2.26-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
@ -20,28 +20,34 @@
|
|||||||
<jacoco_version>0.8.5</jacoco_version>
|
<jacoco_version>0.8.5</jacoco_version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<!-- <dependencies>-->
|
<dependencies>
|
||||||
<!-- <dependency>-->
|
<dependency>
|
||||||
<!-- <groupId>ca.uhn.hapi.fhir</groupId>-->
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||||||
<!-- <artifactId>org.hl7.fhir.convertors</artifactId>-->
|
<artifactId>org.hl7.fhir.convertors</artifactId>
|
||||||
<!-- <version>${project.version}</version>-->
|
<version>${project.version}</version>
|
||||||
<!-- </dependency>-->
|
</dependency>
|
||||||
<!-- <dependency>-->
|
<dependency>
|
||||||
<!-- <groupId>ca.uhn.hapi.fhir</groupId>-->
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||||||
<!-- <artifactId>org.hl7.fhir.r5</artifactId>-->
|
<artifactId>org.hl7.fhir.r5</artifactId>
|
||||||
<!-- <version>${project.version}</version>-->
|
<version>${project.version}</version>
|
||||||
<!-- </dependency>-->
|
<exclusions>
|
||||||
<!-- <dependency>-->
|
<exclusion>
|
||||||
<!-- <groupId>ca.uhn.hapi.fhir</groupId>-->
|
<groupId>org.antlr</groupId>
|
||||||
<!-- <artifactId>org.hl7.fhir.utilities</artifactId>-->
|
<artifactId>ST4</artifactId>
|
||||||
<!-- <version>${project.version}</version>-->
|
</exclusion>
|
||||||
<!-- </dependency>-->
|
</exclusions>
|
||||||
<!-- <dependency>-->
|
</dependency>
|
||||||
<!-- <groupId>ca.uhn.hapi.fhir</groupId>-->
|
<dependency>
|
||||||
<!-- <artifactId>org.hl7.fhir.validation</artifactId>-->
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||||||
<!-- <version>${project.version}</version>-->
|
<artifactId>org.hl7.fhir.utilities</artifactId>
|
||||||
<!-- </dependency>-->
|
<version>${project.version}</version>
|
||||||
<!-- </dependencies>-->
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||||||
|
<artifactId>org.hl7.fhir.validation</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
@ -63,13 +69,21 @@
|
|||||||
<!-- Analyze class files only to exclude shaded agent JAR from report -->
|
<!-- Analyze class files only to exclude shaded agent JAR from report -->
|
||||||
<include>**/*.class</include>
|
<include>**/*.class</include>
|
||||||
</includes>
|
</includes>
|
||||||
<excludes>
|
|
||||||
<!-- <exclude>**/HelpMojo.class</exclude>-->
|
|
||||||
</excludes>
|
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</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>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user