Tweaked a couple POM files for 2 sub-projects to stop the IDE from complaining on the builds. After these changes, the build went flawlessly.

The first change to hapi-fhir-testpage-overlay/pom.xml was to remove a redundant dependency to javax.annotation.
The second change to hapi-fhir-test-utilities/pom.xml was to add a <relativePath> tag to the <parent> tag so that the project could build.
This commit is contained in:
Gary Teichrow 2019-06-25 14:55:20 -07:00 committed by James Agnew
parent e76b1dacb3
commit 5509e5c1df
2 changed files with 1 additions and 6 deletions

View File

@ -5,6 +5,7 @@
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-deployable-pom</artifactId>
<version>4.0.0-SNAPSHOT</version>
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
</parent>
<artifactId>hapi-fhir-test-utilities</artifactId>

View File

@ -93,12 +93,6 @@
<scope>test</scope>
</dependency>
<!-- Java -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>