Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:

jobs:
build:

permissions:
contents: write
runs-on: ubuntu-latest

steps:
Expand All @@ -24,4 +25,5 @@ jobs:

# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,22 @@ How to get started:

https://github.com/ebics-java/ebics-java-client/wiki/EBICS-Client-HowTo

Parameterized launcher (without `ebics.txt`):

```
export EBICS_PASSWORD='changeit'
export EBICS_USER_ID='USER123'
export EBICS_PARTNER_ID='PARTNER123'
export EBICS_HOST_ID='HOST123'
export EBICS_BANK_URL='https://bank.example/ebics'

mvn exec:java \
-Dexec.mainClass=org.kopi.ebics.client.ParameterizedEbicsClientLauncher \
-Dexec.args="--create --ini --hia --hpb"
```

This mode is useful for containerized or ephemeral environments where `ebics.txt` should not be persisted.

You can build it directly from the source with maven or use the releases from [JitPack](https://jitpack.io/#ebics-java/ebics-java-client/).

Gradle:
Expand Down Expand Up @@ -47,4 +63,3 @@ Maven
</dependency>
```


Loading
Loading