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
26 changes: 26 additions & 0 deletions .github/workflows/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build
on:
push:
branches-ignore:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
build:
runs-on:
labels: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: liberica
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build
run: |
./gradlew build --info --stacktrace
25 changes: 25 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build Android libraries + example client and run android emulator tests
on:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build
run: |
./gradlew build --info --stacktrace
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ crashlytics.properties
crashlytics-build.properties
fabric.properties
Contact GitHub API Training Shop Blog About

.profileconfig.json
15 changes: 7 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id 'me.champeau.jmh' version '0.7.3' apply false
id 'com.github.ben-manes.versions' version '0.52.0' apply false
id 'org.owasp.dependencycheck' version '12.1.3' apply false
id 'io.morethan.jmhreport' version '0.9.6' apply false
}

Expand All @@ -13,7 +12,7 @@ ext {
jmhVersion = '1.37'
oktaVersion = '0.5.12'
fusionAuthVersion = '5.3.3'
junitJupiterVersion = '5.13.1'
junitJupiterVersion = '5.13.4'
jaxbVersion = '2.3.1'
bouncyCastleVersion = '1.81'
jose4jVersion = '0.9.6'
Expand All @@ -31,22 +30,22 @@ configure(libraryProjects()) {
apply plugin: 'java-library'

test {
useJUnitPlatform {

}
useJUnitPlatform()
forkEvery = 1
}

dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}"
testImplementation(platform("org.junit:junit-bom:${junitJupiterVersion}"))
testImplementation "org.junit.jupiter:junit-jupiter-api"
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine")
}

}

configure(buildProjects()) {
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'org.owasp.dependencycheck'

repositories {
mavenLocal()
Expand Down