pathing issues
This commit is contained in:
parent
29b3f0efd5
commit
74a63f2bce
|
@ -50,13 +50,13 @@ steps:
|
||||||
- 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)/org.hl7.fhir.report/target/site/jacoco-aggregate/jacoco.xml'
|
||||||
reportDirectory: '$(System.DefaultWorkingDirectory)/report/target/site/jacoco-aggregate/'
|
reportDirectory: '$(System.DefaultWorkingDirectory)/org.hl7.fhir.report/target/site/jacoco-aggregate/'
|
||||||
|
|
||||||
- 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)/org.hl7.fhir.validation/target/org.hl7.fhir.validation-$(version).jar"
|
targetPath: "$(System.DefaultWorkingDirectory)/org.hl7.fhir.validation/target/org.hl7.fhir.validation-$(version).jar"
|
||||||
artifactName: ProjectAOutput
|
artifactName: Validator
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,9 @@
|
||||||
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<artifactId>report</artifactId>
|
<artifactId>org.hl7.fhir.report</artifactId>
|
||||||
|
|
||||||
|
<packaging>bundle</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.deploy.skip>true</maven.deploy.skip>
|
<maven.deploy.skip>true</maven.deploy.skip>
|
2
pom.xml
2
pom.xml
|
@ -133,7 +133,7 @@
|
||||||
<module>org.hl7.fhir.validation</module>
|
<module>org.hl7.fhir.validation</module>
|
||||||
<module>org.hl7.fhir.validation.cli</module>
|
<module>org.hl7.fhir.validation.cli</module>
|
||||||
<!-- The report project exists only to aggregate the test results from the other projects into a central report. -->
|
<!-- The report project exists only to aggregate the test results from the other projects into a central report. -->
|
||||||
<module>report</module>
|
<module>org.hl7.fhir.report</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
Loading…
Reference in New Issue