Skip to content

Commit

Permalink
Run CI builds for Java versions 17 and 21 LTS and the latest 23
Browse files Browse the repository at this point in the history
  • Loading branch information
besidev committed Oct 1, 2024
1 parent 93879d2 commit 568b12d
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
jdk: [17] #, 21]
jdk: [17, 21, 23]
os: [ubuntu-latest, windows-latest] #, macos-13]
fail-fast: false
max-parallel: 4
max-parallel: 6
timeout-minutes: 30

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# JPro Platform
![Build](https://github.com/jpro-one/jpro-platform/actions/workflows/linux.yml/badge.svg)
![Build](https://github.com/jpro-one/jpro-platform/actions/workflows/main.yml/badge.svg)
[![JPro supported](https://img.shields.io/badge/JPro-supported-brightgreen.svg)](https://www.jpro.one/)

The JPro Platform represents the foundation of cross-platform application development,
Expand Down
9 changes: 9 additions & 0 deletions jpro-mail/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,13 @@ dependencies {
api "org.eclipse.collections:eclipse-collections-api:$ECLIPSE_COLLECTIONS_VERSION"
implementation "org.eclipse.collections:eclipse-collections:$ECLIPSE_COLLECTIONS_VERSION"
api "org.slf4j:slf4j-api:$SLF4J_API_VERSION"
}

javadoc {
options {
encoding = 'UTF-8'
version = true
author = true
// addStringOption('Xdoclint:none', '-quiet')
}
}
24 changes: 12 additions & 12 deletions jpro-mdfx/build.gradle
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
plugins {
id 'org.javamodularity.moduleplugin' version "$MODULE_PLUGIN_VERSION"
id 'org.javamodularity.moduleplugin' version "$MODULE_PLUGIN_VERSION"
}

dependencies {
implementation project(':jpro-youtube')
implementation "com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:$FLEXMARK_VERSION"
implementation "com.vladsch.flexmark:flexmark-ext-gfm-tasklist:$FLEXMARK_VERSION"
implementation "com.vladsch.flexmark:flexmark-ext-tables:$FLEXMARK_VERSION"
implementation "com.vladsch.flexmark:flexmark-ext-attributes:$FLEXMARK_VERSION"
implementation project(':jpro-youtube')
implementation "com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:$FLEXMARK_VERSION"
implementation "com.vladsch.flexmark:flexmark-ext-gfm-tasklist:$FLEXMARK_VERSION"
implementation "com.vladsch.flexmark:flexmark-ext-tables:$FLEXMARK_VERSION"
implementation "com.vladsch.flexmark:flexmark-ext-attributes:$FLEXMARK_VERSION"
}

javadoc {
options {
encoding = 'UTF-8'
version = true
author = true
// addStringOption('Xdoclint:none', '-quiet')
}
options {
encoding = 'UTF-8'
version = true
author = true
// addStringOption('Xdoclint:none', '-quiet')
}
}

0 comments on commit 568b12d

Please sign in to comment.