Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
Merge branch 'dev' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
ewelinagr committed Aug 24, 2022
2 parents 39ac2e8 + 82d3709 commit a8888d6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Publish the image to [Docker Hub](https://hub.docker.com/r/thehyve/transmart-api

```bash
docker login
TRANSMART_VERSION="17.2.14"
TRANSMART_VERSION="17.2.15"
docker tag transmart-api-server "thehyve/transmart-api-server:${TRANSMART_VERSION}"
docker push "thehyve/transmart-api-server:${TRANSMART_VERSION}"
```
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:

transmart-api-server:
container_name: transmart-api-server
image: thehyve/transmart-api-server:17.2.14
image: thehyve/transmart-api-server:17.2.15
ports:
- 9081:8081
environment:
Expand Down
2 changes: 1 addition & 1 deletion docker/transmart-api-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ LABEL maintainer="luk.zim91@gmail.com" \
service="transmart-api-server" \
description="This is the Docker image of the tranSMART API server"

ARG TRANSMART_VERSION="17.2.14"
ARG TRANSMART_VERSION="17.2.15"

ENV TRANSMART_USER_NAME transmart
ENV TRANSMART_GROUP_NAME "${TRANSMART_USER_NAME}"
Expand Down
6 changes: 3 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tranSMART 17.2.14 Installation
# tranSMART 17.2.15 Installation

Below are the installation instructions for tranSMART version 17.2.14. If you already have an older version of tranSMART, follow the [upgrade guide](upgrade.md) instead.
Below are the installation instructions for tranSMART version 17.2.15. If you already have an older version of tranSMART, follow the [upgrade guide](upgrade.md) instead.

1. [Prerequisites](#1-prerequisites)
2. [Setup database](#2-setup-database)
Expand Down Expand Up @@ -102,7 +102,7 @@ Deployment artefacts are published to [the Nexus repository of The Hyve](https:/
To fetch and run `transmart-api-server`:
```bash
# Fetch artefacts from Maven
TRANSMART_VERSION=17.2.14
TRANSMART_VERSION=17.2.15
curl -f -L https://repo.thehyve.nl/service/local/repositories/releases/content/org/transmartproject/transmart-api-server/${TRANSMART_VERSION}/transmart-api-server-${TRANSMART_VERSION}.war -o transmart-api-server-${TRANSMART_VERSION}.war && \
# Run it with:
java -jar -Dspring.config.location=/path/to/config.yaml transmart-api-server-${TRANSMART_VERSION}.war
Expand Down
3 changes: 2 additions & 1 deletion transmart-api-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ publishing {
}
}
}

bootWar.dependsOn ':transmart-schemas:assemble'
publishToMavenLocal.dependsOn 'executableWar'
publish.dependsOn 'executableWar'
assemble.dependsOn ':transmart-schemas:assemble'
4 changes: 2 additions & 2 deletions transmart-copy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ only substituting indexes for database identifiers for subjects, trial visits an

### Download
The latest version can be downloaded here:
[transmart-copy-17.2.14.jar](https://repo.thehyve.nl/service/local/repositories/releases/content/org/transmartproject/transmart-copy/17.2.14/transmart-copy-17.2.14.jar).
[transmart-copy-17.2.15.jar](https://repo.thehyve.nl/service/local/repositories/releases/content/org/transmartproject/transmart-copy/17.2.15/transmart-copy-17.2.15.jar).

```bash
# Download transmart-copy
curl -f -L https://repo.thehyve.nl/service/local/repositories/releases/content/org/transmartproject/transmart-copy/17.2.14/transmart-copy-17.2.14.jar -o transmart-copy.jar
curl -f -L https://repo.thehyve.nl/service/local/repositories/releases/content/org/transmartproject/transmart-copy/17.2.15/transmart-copy-17.2.15.jar -o transmart-copy.jar
```

### Usage
Expand Down

0 comments on commit a8888d6

Please sign in to comment.