Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release to master #279

Merged
merged 26 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b842121
Bumping testcontainers version to 1.17.6, upgrading jackson version a…
Jan 9, 2023
befd01a
Removing license change notice. Has been there for a year.
francis-pouatcha Apr 29, 2023
cccd388
Reformulating the main page
francis-pouatcha Apr 29, 2023
947f38f
Drawing deployment models of datasafe
francis-pouatcha May 1, 2023
bb3d74d
Start next iteration with 2.0.1-SNAPSHOT
max402 Oct 2, 2023
8f9eac3
Updated keymanagement to version 0.0.9
Mme-adorsys Oct 31, 2023
9dad621
Updated keymanagement to version 0.0.9
Mme-adorsys Oct 31, 2023
741c1f3
fix javadoc
max402 Nov 14, 2023
9f54331
during release fixes
max402 Oct 3, 2023
ecd4c67
update plugin versions
max402 Oct 6, 2023
8bde9eb
add javadoc version
max402 Nov 14, 2023
495d803
remove unneeded --add-opens
max402 Nov 14, 2023
374fb08
Proof reading
francis-pouatcha Dec 12, 2023
ab26791
Merge pull request #232 from adorsys/after_release_fixes
francis-pouatcha Dec 13, 2023
54be98a
Merge branch 'develop' into fix_javadoc
francis-pouatcha Dec 13, 2023
568e5ab
Merge pull request #233 from adorsys/fix_javadoc
francis-pouatcha Dec 13, 2023
9a67ae8
Merge branch 'develop' into maintenance/documentation
francis-pouatcha Dec 13, 2023
faa254a
Consise project description
francis-pouatcha Dec 13, 2023
d318b9b
Fixed broken documentation links.
francis-pouatcha Dec 13, 2023
046fa08
Reverted pom.xml modifications on this documentation branch.
francis-pouatcha Dec 13, 2023
a1e0467
Merge pull request #235 from adorsys/maintenance/documentation
francis-pouatcha Dec 16, 2023
a258586
release workflow
max402 Jan 29, 2024
40e3b81
Start next iteration with 2.0.1-SNAPSHOT
max402 Jan 29, 2024
790a350
bump aws-java-sdk-s3 and aws-java-sdk-core to 1.12.646
max402 Jan 30, 2024
ac01c92
Prepare release 2.0.1
max402 Jan 30, 2024
62f006a
Merge branch 'release-2.0.1'
max402 Jan 30, 2024
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
44 changes: 44 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Actions on pull requests
on:
pull_request:
branches:
- develop
- master

jobs:
pull-request-job:
runs-on: ubuntu-latest
steps:
- name: Step 1 - Checkout repository code
uses: actions/checkout@v4

- name: Step 2 - Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'

- name: Step 3 - Cache Docker images.
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}

- name: Step 4 - Build & Test
run: mvn clean verify -ntp

- name: Step 5 - Upload coverage unittests reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
gcov_ignore: '!*datasafe-business*'
flags: unittests
verbose: true

- name: Step 6 - Upload coverage e2e tests reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
gcov_include: '*datasafe-business*'
flags: e2e_tests
verbose: true
22 changes: 0 additions & 22 deletions .github/workflows/pull-requests.yml

This file was deleted.

53 changes: 53 additions & 0 deletions .github/workflows/push-develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Develop branch build
on:
push:
branches:
- develop

jobs:
develop-build-job:
runs-on: ubuntu-latest
steps:
- name: Step 1 - Checkout repository code
uses: actions/checkout@v4

- name: Step 2 - Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'

- name: Step 3 - Cache Docker images.
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}

- name: Step 4 - Build & Test
run: mvn clean verify -ntp

- name: Step 5 - Deploy Snapshot
run: ./scripts/mvn_deploy.sh
env:
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
GPG_EXECUTABLE: gpg
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }}
GPG_OWNERTRUST: ${{ secrets.GPG_OWNERTRUST }}

- name: Step 6 - Upload coverage unittests reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
gcov_ignore: '!*datasafe-business*'
flags: unittests
verbose: true

- name: Step 7 - Upload coverage e2e tests reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
gcov_include: '*datasafe-business*'
flags: e2e_tests
verbose: true
37 changes: 37 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Release to Maven Central
on:
push:
tags:
- v*

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Step 1 - Checkout repository code
uses: actions/checkout@v4

- name: Step 2 - Setup JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'

- name: Step 3 - Cache Docker images.
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}

- name: Step 4 - Maven deploy release
run: ./scripts/mvn_deploy.sh
env:
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
GPG_EXECUTABLE: gpg
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }}
GPG_OWNERTRUST: ${{ secrets.GPG_OWNERTRUST }}

# - name: Step 4 - Push JavaDoc to GitHub Pages
# run: ./scripts/push-javadoc-to-gh-pages.sh
11 changes: 0 additions & 11 deletions .travis/codecov_bash.sh

This file was deleted.

8 changes: 0 additions & 8 deletions .travis/deploy.sh

This file was deleted.

Loading