Skip to content

Commit

Permalink
Merge pull request #350 from UMM-CSci-3601/fix-gradle-jdk-downloads
Browse files Browse the repository at this point in the history
Add `settings.gradle` file with repository downloader
  • Loading branch information
NicMcPhee authored Aug 30, 2024
2 parents 5e56828 + cedb2c2 commit ce72381
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions server/settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
*
* Detailed information about configuring a multi-project build in Gradle can be found
* in the user manual at https://docs.gradle.org/5.6/userguide/multi_project_builds.html
*/
// This allows us to use the jresolver plugin. If we have
// this plugin in place, we can specify a particular JDK version
// in `build.gradle` and Gradle will download it for us if it's
// not already installed on the system. This will hopefully make
// it easier for people to run the project on a broad range of
// computers without having to worry about installing the right
// JDK version.

plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
}

rootProject.name = 'server'

0 comments on commit ce72381

Please sign in to comment.