Skip to content

Commit

Permalink
JDK 21 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan committed Apr 6, 2024
1 parent 8737d90 commit c9f468e
Show file tree
Hide file tree
Showing 7 changed files with 186 additions and 163 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
java-version: '21'

- name: Build with Maven
run: mvn clean verify
Expand All @@ -39,7 +39,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
java-version: '21'

- name: Publish package [on main]
env:
Expand All @@ -48,7 +48,7 @@ jobs:
mvn versions:set -DnewVersion=1.0.${{ github.run_number }}
mvn deploy -DskipTests -Denv=mysql
- uses: actions/delete-package-versions@v4
- uses: actions/delete-package-versions@v5
with:
package-name: 'com.github.binpastes.backend'
package-type: 'maven'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ Apache License 2.0 ([Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0))

## Requirements

* JDK 17+
* JDK 21+
* MySQL 8+

Just put the [JDK](https://adoptium.net/temurin/releases/?os=any&arch=any&package=jdk&version=17) somewhere on your file system.
Just put the [JDK](https://adoptium.net/temurin/releases/?os=any&arch=any&package=jdk&version=21) somewhere on your file system.
The `bin` folder contains the `java` binary.

### How to configure
Expand Down
22 changes: 11 additions & 11 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
"node": "20"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"pnpm": "^8.15.6",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-plugin-solid": "^2.10.2"
"@types/crypto-js": "4.2.2",
"pnpm": "8.15.6",
"typescript": "5.4.4",
"vite": "5.1.6",
"vite-plugin-solid": "2.10.2"
},
"dependencies": {
"@solidjs/router": "^0.13.1",
"crypto-js": "^4.2.0",
"linkify-element": "^4.1.3",
"linkifyjs": "^4.1.3",
"mvp.css": "^1.15.0",
"solid-js": "^1.8.16"
"@solidjs/router": "0.13.1",
"crypto-js": "4.2.0",
"linkify-element": "4.1.3",
"linkifyjs": "4.1.3",
"mvp.css": "1.15.0",
"solid-js": "1.8.16"
}
}
Loading

0 comments on commit c9f468e

Please sign in to comment.