Skip to content

Commit

Permalink
Update release to include ig in the release
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Bastide <pbastide@us.ibm.com>
  • Loading branch information
prb112 committed May 13, 2020
1 parent b029a30 commit 172f310
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/release/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function build_all {
PROFILES_ARR+=(search-all-tests)
PROFILES_ARR+=(jdbc-all-tests)
PROFILES=$(IFS=, ; echo "${PROFILES_ARR[*]}")
_mvn 'fhir-parent' "-Pdeploy-bintray,fhir-javadocs,fhir-validation-distribution,${PROFILES}"
_mvn 'fhir-parent' "-Pdeploy-bintray,fhir-javadocs,fhir-validation-distribution,fhir-ig-carin-bb,fhir-ig-davinci-pdex-plan-net,fhir-ig-mcode,fhir-ig-us-core,${PROFILES}"
}

###############################################################################
Expand Down
5 changes: 3 additions & 2 deletions docs/src/pages/guides/CreateFHIRValidationAssembly.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: post
title: Creating the fhir-validation assembly
description: Creating the fhir-validation assembly
date: 2020-04-14 09:59:05 -0400
date: 2020-05-13 09:00:00 -0400
permalink: /CreateFHIRValidationAssembly/
---

Expand Down Expand Up @@ -81,14 +81,15 @@ Archive: ./tmp-fhir4/FHIR/fhir-validation/target/fhir-validation-distribution.z
To create the distribution with a set of profiles and/or a single user profile, you add the following profiles to the build step.

- fhir-ig-carin-bb
- fhir-ig-davinci-pdex-plan-net
- fhir-ig-mcode
- fhir-ig-us-core
- `fhir-ig-user-defined` - A user defined profile

If you chose to add the user defined profile, you must pass in the name of the dependency using a commandline parameter `-Dfhir-ig-user-defined=fhir-ig-example`.

```
mvn clean package -f fhir-validation/ -Pfhir-validation-distribution,fhir-ig-carin-bb,fhir-ig-mcode,fhir-ig-us-core,fhir-ig-user-defined
mvn clean package -f fhir-validation/ -Pfhir-validation-distribution,fhir-ig-carin-bb,fhir-ig-davinci-pdex-plan-net,fhir-ig-mcode,fhir-ig-us-core,fhir-ig-user-defined
```
It'll create the following zip file - `fhir-validation/target/fhir-validation-distribution.zip`

Expand Down
14 changes: 13 additions & 1 deletion fhir-validation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
<activation>
<activeByDefault>false</activeByDefault>
</activation>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -126,6 +125,19 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>fhir-ig-davinci-pdex-plan-net</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>fhir-ig-davinci-pdex-plan-net</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</profile>
<profile>
<id>fhir-ig-mcode</id>
<activation>
Expand Down

0 comments on commit 172f310

Please sign in to comment.