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 1.2.0 #1328

Open
wants to merge 42 commits into
base: release-1.2.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
317b541
Create pom.xml
Suramita Aug 29, 2024
53c1781
Create build.yml
Suramita Aug 29, 2024
069e018
Update build.yml
Suramita Aug 29, 2024
be2118f
Update pom.xml
Suramita Aug 29, 2024
777bac7
Update build.yml
Suramita Aug 29, 2024
9e441c8
Update pom.xml
Suramita Aug 29, 2024
b800902
Update build.yml
Suramita Aug 29, 2024
41ced00
Update pom.xml
Suramita Aug 29, 2024
7f829ea
Update build.yml
Suramita Aug 29, 2024
377848b
Update pom.xml
Suramita Aug 29, 2024
06117d6
Update push_trigger.yml
Suramita Aug 29, 2024
b921911
Update build.yml
Suramita Aug 29, 2024
76305d5
Update pom.xml
Suramita Aug 29, 2024
196ab4e
Update build.yml
Suramita Aug 29, 2024
4bbfc46
Update build.yml
Suramita Aug 29, 2024
9372186
Update push_trigger.yml
Suramita Aug 29, 2024
d342f89
Update pom.xml
Suramita Aug 29, 2024
2f977ea
Update build.yml
Suramita Aug 29, 2024
7953272
Update pom.xml
Suramita Aug 29, 2024
2179147
Update build.yml
Suramita Aug 29, 2024
454a21f
Update build.yml
Suramita Aug 29, 2024
cfc4c9b
Update pom.xml
Suramita Aug 29, 2024
920a370
Update build.yml
Suramita Aug 29, 2024
bd02583
Update build.yml
Suramita Aug 29, 2024
4b2fa77
Update pom.xml
Suramita Aug 29, 2024
6452fae
Update build.yml
Suramita Aug 29, 2024
129023b
Update pom.xml
Suramita Aug 29, 2024
25fac5c
Update build.yml
Suramita Aug 29, 2024
68081f9
Update pom.xml
Suramita Aug 29, 2024
209692c
Update pom.xml
Suramita Aug 29, 2024
488a6b5
Update build.yml
Suramita Aug 29, 2024
d012ace
Update pom.xml
Suramita Aug 30, 2024
b2ec38c
Update build.yml
Suramita Aug 30, 2024
aab18d9
Update pom.xml
Suramita Aug 30, 2024
7afb844
Update build.yml
Suramita Aug 30, 2024
7f59828
Update pom.xml
Suramita Sep 3, 2024
4abf12b
Update pom.xml
Suramita Sep 3, 2024
75c7aef
Update build.yml
Suramita Sep 3, 2024
110282e
Update pom.xml
Suramita Sep 4, 2024
db4ca7a
Update pom.xml
Suramita Sep 4, 2024
758b806
Update pom.xml
Suramita Sep 4, 2024
53a568e
Update pom.xml
Suramita Sep 4, 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
39 changes: 39 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build

on:
push:
branches:
- release-1.2.0
pull_request:
types: [opened, synchronize, reopened]

jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Cache SonarQube packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=testing-IDA -Dsonar.projectName='testing IDA'
10 changes: 3 additions & 7 deletions .github/workflows/push_trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,19 @@ name: Maven Package upon a push
on:
push:
branches:
- '!release-branch'
- release-1*
- master
- 1.*
- develop
- release-1.2.0

jobs:
build:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
ref: ${{ github.ref }}
java-version: 11
java-version: 17
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file

Expand Down
38 changes: 38 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build

on:
push:
branches:
- master


jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Cache SonarQube packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=Suramita_id-authentication_59b4c530-2a4e-47cb-bc9d-8e35eb9ec404 -Dsonar.projectName='id-authentication'