Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release/1.0.0.0' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
hhund committed Oct 11, 2023
2 parents 7de3bb8 + abd709a commit 4262d48
Show file tree
Hide file tree
Showing 193 changed files with 6,422 additions and 5,625 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'zulu'
java-version: 17
cache: 'maven'
- name: Build with Maven
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'zulu'
java-version: 17
cache: 'maven'
check-latest: true
- name: Publish with Maven
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
24 changes: 4 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,10 @@
# CODEX Processes
# RDP Processes

Business processes for the NUM CODEX project (AP1) as plugins for the [HiGHmed Data Sharing Framework][1].
Business processes for the NUM RDP project (AP1) as plugins for the [Data Sharing Framework][1].

## Build

Prerequisite: Java 11, Maven >= 3.6

Add the Github Package Registry server to your Maven `.m2/settings.xml`. Instructions on how to generate the `USERNAME`
and `TOKEN` can be found in the HiGHmed DSF Wiki page with the
name [Using the Github Maven Package Registry](https://github.com/highmed/highmed-dsf/wiki/Using-the-Github-Maven-Package-Registry)
. The token need at least the `read:packages` scope.

```xml

<servers>
<server>
<id>highmed-dsf</id>
<username>USERNAME</username>
<password>TOKEN</password>
</server>
</servers>
```
Prerequisite: Java 17, Maven >= 3.6

Build the project from the root directory of this repository by executing the following command.

Expand All @@ -41,4 +25,4 @@ Unless required by applicable law or agreed to in writing, software distributed
AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License.

[1]: <https://github.com/highmed/highmed-dsf>
[1]: <https://dsf.dev>
Loading

0 comments on commit 4262d48

Please sign in to comment.