FHIR icon indicating copy to clipboard operation
FHIR copied to clipboard

Default pom entry in mvnrepository includes an errant <scope> line

Open henryhbk opened this issue 2 years ago • 1 comments

In 4.11.1 in mvnrepository you will get an errant line with <scope>test</scope> which makes eclipse unhappy (breaks the classpath)

`

<groupId>com.ibm.fhir</groupId>

<artifactId>fhir-client</artifactId>

<version>4.11.1</version>

<scope>test</scope>
` Works fine without the line 2022-06-02_15-05-15

henryhbk avatar Jun 02 '22 19:06 henryhbk

Really not sure where that site is getting this line from.

I see nothing in fhir-parent/pom.xml (or fhir-client/pom.xml) that would indicate it should have a default scope of "test".

https://search.maven.org/artifact/com.ibm.fhir/fhir-client/4.11.1/jar lists it properly:

<dependency>
  <groupId>com.ibm.fhir</groupId>
  <artifactId>fhir-client</artifactId>
  <version>4.11.1</version>
</dependency>

lmsurpre avatar Jul 18 '22 17:07 lmsurpre