wip
This commit is contained in:
parent
2808d7ef14
commit
3717b9e76b
|
@ -45,21 +45,21 @@ steps:
|
||||||
- bash: echo Current version => $(version)
|
- bash: echo Current version => $(version)
|
||||||
displayName: 'version'
|
displayName: 'version'
|
||||||
|
|
||||||
- bash: <(curl https://codecov.io/bash) -t $(CODECOV_TOKEN)
|
# - script: bash <(curl https://codecov.io/bash) -t $(CODECOV_TOKEN)
|
||||||
displayName: 'codecov'
|
# displayName: 'codecov'
|
||||||
|
|
||||||
|
- task: PublishCodeCoverageResults@1
|
||||||
# - task: PublishCodeCoverageResults@1
|
inputs:
|
||||||
# inputs:
|
codeCoverageTool: "Jacoco"
|
||||||
# codeCoverageTool: "Jacoco"
|
summaryFileLocation: "$(System.DefaultWorkingDirectory)/report/target/site/jacoco-aggregate/jacoco.xml"
|
||||||
# summaryFileLocation: "$(System.DefaultWorkingDirectory)/report/target/site/jacoco-aggregate/jacoco.xml"
|
failIfCoverageEmpty: true
|
||||||
# failIfCoverageEmpty: true
|
|
||||||
|
|
||||||
# - task: PublishPipelineArtifact@1
|
# - task: PublishPipelineArtifact@1
|
||||||
# condition: eq(variables.currentImage, 'ubuntu-16.04')
|
# condition: eq(variables.currentImage, 'ubuntu-16.04')
|
||||||
# inputs:
|
# inputs:
|
||||||
# targetPath: "$(System.DefaultWorkingDirectory)/target/ProjectA-$(version).jar"
|
# targetPath: "$(System.DefaultWorkingDirectory)/target/ProjectA-$(version).jar"
|
||||||
# artifactName: ProjectAOutput
|
# artifactName: ProjectAOutput
|
||||||
|
https://codecov:
|
||||||
|
io/bash:
|
||||||
|
|
||||||
|
|
||||||
|
|
4
pom.xml
4
pom.xml
|
@ -290,6 +290,10 @@
|
||||||
<exclude>org/hl7/fhir/r5/formats/XmlParser</exclude>
|
<exclude>org/hl7/fhir/r5/formats/XmlParser</exclude>
|
||||||
<exclude>org/hl7/fhir/r4/formats/JsonParser</exclude>
|
<exclude>org/hl7/fhir/r4/formats/JsonParser</exclude>
|
||||||
<exclude>org/hl7/fhir/r4/formats/XmlParser</exclude>
|
<exclude>org/hl7/fhir/r4/formats/XmlParser</exclude>
|
||||||
|
<exclude>org/hl7/fhir/r4/**/*</exclude>
|
||||||
|
<exclude>org/hl7/fhir/dstu3/**/*</exclude>
|
||||||
|
<exclude>org/hl7/fhir/dstu2/**/*</exclude>
|
||||||
|
<exclude>org/hl7/fhir/dstu2016may/**/*</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
|
|
|
@ -23,26 +23,26 @@
|
||||||
<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.dstu2</artifactId>
|
<!-- <artifactId>org.hl7.fhir.dstu2</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.dstu3</artifactId>
|
<!-- <artifactId>org.hl7.fhir.dstu3</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.dstu2016may</artifactId>
|
<!-- <artifactId>org.hl7.fhir.dstu2016may</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.r4</artifactId>
|
<!-- <artifactId>org.hl7.fhir.r4</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>
|
||||||
|
|
Loading…
Reference in New Issue