Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.

Commit 4262d48

Browse files
committed
Merge remote-tracking branch 'origin/release/1.0.0.0' into main
2 parents 7de3bb8 + abd709a commit 4262d48

File tree

193 files changed

+6422
-5625
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

193 files changed

+6422
-5625
lines changed

.github/workflows/maven-build.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
15-
- name: Set up JDK 11
16-
uses: actions/setup-java@v1
14+
- uses: actions/checkout@v4
15+
- name: Set up JDK 17
16+
uses: actions/setup-java@v3
1717
with:
18-
java-version: 11
18+
distribution: 'zulu'
19+
java-version: 17
20+
cache: 'maven'
1921
- name: Build with Maven
2022
env:
2123
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/maven-publish.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,14 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v2
24-
- name: Set up JDK 11
25-
uses: actions/setup-java@v1
23+
- uses: actions/checkout@v4
24+
- name: Set up JDK 17
25+
uses: actions/setup-java@v3
2626
with:
27-
java-version: 11
27+
distribution: 'zulu'
28+
java-version: 17
29+
cache: 'maven'
30+
check-latest: true
2831
- name: Publish with Maven
2932
env:
3033
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,10 @@
1-
# CODEX Processes
1+
# RDP Processes
22

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

55
## Build
66

7-
Prerequisite: Java 11, Maven >= 3.6
8-
9-
Add the Github Package Registry server to your Maven `.m2/settings.xml`. Instructions on how to generate the `USERNAME`
10-
and `TOKEN` can be found in the HiGHmed DSF Wiki page with the
11-
name [Using the Github Maven Package Registry](https://github.com/highmed/highmed-dsf/wiki/Using-the-Github-Maven-Package-Registry)
12-
. The token need at least the `read:packages` scope.
13-
14-
```xml
15-
16-
<servers>
17-
<server>
18-
<id>highmed-dsf</id>
19-
<username>USERNAME</username>
20-
<password>TOKEN</password>
21-
</server>
22-
</servers>
23-
```
7+
Prerequisite: Java 17, Maven >= 3.6
248

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

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

44-
[1]: <https://github.com/highmed/highmed-dsf>
28+
[1]: <https://dsf.dev>

0 commit comments

Comments
 (0)