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