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:
parent
e76b1dacb3
commit
5509e5c1df
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue