4 Commits

Author SHA1 Message Date
29a9c5ae79 Update .github/workflows/build.yml
Some checks failed
Java CI with Gradle / build (21) (push) Failing after 14m57s
Java CI with Gradle / build (17) (push) Successful in 15m26s
Java CI with Gradle / build (11) (push) Successful in 15m33s
Java CI with Gradle / build (8) (push) Successful in 15m30s
2023-12-28 01:29:57 +00:00
e1bb2ad8dc Update .github/workflows/build.yml
Some checks failed
Java CI with Gradle / build (25) (push) Failing after 1m22s
Java CI with Gradle / build (17) (push) Has been cancelled
Java CI with Gradle / build (11) (push) Has been cancelled
Java CI with Gradle / build (21) (push) Has been cancelled
Java CI with Gradle / build (8) (push) Has been cancelled
2023-12-28 01:26:53 +00:00
797582f39f build: bump jvm from 1.6.20 to 1.6.21 (#4)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-04 15:31:20 +02:00
e7c7f77a4b build: bump gradle/gradle-build-action from 2.1.4 to 2.1.5 (#3)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-04 15:30:59 +02:00
3 changed files with 10 additions and 6 deletions

View File

@ -20,15 +20,19 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# follows https://en.wikipedia.org/wiki/Java_version_history#Release_table
java-versions: ['8', '11', '17', '21']
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
- name: Set up Java ${{ matrix.java-versions }}
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: ${{ matrix.java-versions }}
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee
uses: gradle/gradle-build-action@fec4a42eb0c83154e5c9590748ba8337949c5701
with:
arguments: build

View File

@ -30,14 +30,14 @@ jobs:
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Build with Gradle
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee
uses: gradle/gradle-build-action@fec4a42eb0c83154e5c9590748ba8337949c5701
with:
arguments: build
# The USERNAME and TOKEN need to correspond to the credentials environment variables used in
# the publishing section of your build.gradle
- name: Publish to GitHub Packages
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee
uses: gradle/gradle-build-action@fec4a42eb0c83154e5c9590748ba8337949c5701
with:
arguments: publish
env:

View File

@ -1,6 +1,6 @@
plugins {
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
kotlin("jvm") version "1.6.20"
kotlin("jvm") version "1.6.21"
id("org.jetbrains.dokka") version "1.6.21"
// Apply the java-library plugin for API and implementation separation.