mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-06 12:58:14 +00:00
Snapshot builder fix (#223)
* Update module-snapshot-publishing.yml for Azure Pipelines * Changing pipeline, because intermodule depenedecies are not being read in correctly.
This commit is contained in:
parent
d5a9c9f8ea
commit
97b6a9fbdb
@ -7,24 +7,6 @@ trigger:
|
|||||||
|
|
||||||
pr: none
|
pr: none
|
||||||
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
dstu2:
|
|
||||||
module: "org.hl7.fhir.dstu2"
|
|
||||||
dstu3:
|
|
||||||
module: "org.hl7.fhir.dstu3"
|
|
||||||
dstu2016may:
|
|
||||||
module: "org.hl7.fhir.dstu2016may"
|
|
||||||
r4:
|
|
||||||
module: "org.hl7.fhir.r4"
|
|
||||||
r5:
|
|
||||||
module: "org.hl7.fhir.r5"
|
|
||||||
validator:
|
|
||||||
module: "org.hl7.fhir.validation"
|
|
||||||
validator_cli:
|
|
||||||
module: "org.hl7.fhir.validation.cli"
|
|
||||||
maxParallel: 8
|
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: "ubuntu-16.04"
|
vmImage: "ubuntu-16.04"
|
||||||
|
|
||||||
@ -32,10 +14,6 @@ variables:
|
|||||||
currentModule: $(module)
|
currentModule: $(module)
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# Debugging output to identify current module.
|
|
||||||
- bash: echo Publishing SNAPSHOT for $(module)
|
|
||||||
displayName: 'Print module name.'
|
|
||||||
|
|
||||||
# Signing, for now, occurs for all builds, SNAPSHOT or release. So we need a valid
|
# Signing, for now, occurs for all builds, SNAPSHOT or release. So we need a valid
|
||||||
# signing key. The next two steps download the public and private keys from the
|
# signing key. The next two steps download the public and private keys from the
|
||||||
# secure library files.
|
# secure library files.
|
||||||
@ -106,16 +84,7 @@ steps:
|
|||||||
- task: Maven@3
|
- task: Maven@3
|
||||||
displayName: 'Deploy $(module) to Sonatype staging'
|
displayName: 'Deploy $(module) to Sonatype staging'
|
||||||
inputs:
|
inputs:
|
||||||
mavenPomFile: '$(System.DefaultWorkingDirectory)/$(module)/pom.xml'
|
mavenPomFile: '$(System.DefaultWorkingDirectory)/pom.xml'
|
||||||
goals: clean deploy
|
goals: deploy
|
||||||
options: '--settings $(System.DefaultWorkingDirectory)/settings.xml'
|
options: '--settings $(System.DefaultWorkingDirectory)/settings.xml'
|
||||||
publishJUnitResults: false
|
publishJUnitResults: false
|
||||||
|
|
||||||
# Clean any existing deployment artifacts
|
|
||||||
- task: Maven@3
|
|
||||||
displayName: 'Clean any existing deploy artifacts.'
|
|
||||||
inputs:
|
|
||||||
mavenPomFile: '$(System.DefaultWorkingDirectory)/$(module)/pom.xml'
|
|
||||||
goals: clean
|
|
||||||
options: '--settings $(System.DefaultWorkingDirectory)/settings.xml'
|
|
||||||
publishJUnitResults: false
|
|
@ -19,6 +19,7 @@
|
|||||||
<groupId>ca.uhn.hapi.fhir</groupId>
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||||||
<artifactId>org.hl7.fhir.utilities</artifactId>
|
<artifactId>org.hl7.fhir.utilities</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>ca.uhn.hapi.fhir</groupId>
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||||||
<artifactId>hapi-fhir-base</artifactId>
|
<artifactId>hapi-fhir-base</artifactId>
|
||||||
@ -134,5 +135,4 @@
|
|||||||
</resource>
|
</resource>
|
||||||
</resources>
|
</resources>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>ca.uhn.hapi.fhir</groupId>
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||||||
<artifactId>org.hl7.fhir.utilities</artifactId>
|
<artifactId>org.hl7.fhir.utilities</artifactId>
|
||||||
<version>${project.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -144,7 +143,6 @@
|
|||||||
<artifactId>commonmark-ext-gfm-tables</artifactId>
|
<artifactId>commonmark-ext-gfm-tables</artifactId>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
@ -27,7 +27,6 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>ca.uhn.hapi.fhir</groupId>
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||||||
<artifactId>org.hl7.fhir.utilities</artifactId>
|
<artifactId>org.hl7.fhir.utilities</artifactId>
|
||||||
<version>${project.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- FHIR Versions -->
|
<!-- FHIR Versions -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user