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

Cache applied/extracted classpath from Paperclips instead of Paperclips themselves #93

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update testing JVMs
  • Loading branch information
jpenilla committed Jan 10, 2025
commit c6abbcb15aca902301f6778304fa9eb7234f278d
5 changes: 3 additions & 2 deletions tester/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,13 @@ tasks {
register<RunServer>("run1_8") {
version = "1.8.8"
runDirectory = layout.projectDirectory.dir("run1_8")
javaLauncher = toolchains.launcherFor { languageVersion = JavaLanguageVersion.of(8) }
javaLauncher = toolchains.launcherFor { languageVersion = JavaLanguageVersion.of(11) }
ignoreUnsupportedJvm()
}
register<RunServer>("run1_12") {
version = "1.12.2"
runDirectory = layout.projectDirectory.dir("run1_12")
javaLauncher = toolchains.launcherFor { languageVersion = JavaLanguageVersion.of(8) }
ignoreUnsupportedJvm()
}
withType<RunServer> {
version.convention("1.21.4")
Expand Down
Loading