/* * This file was generated by the Gradle 'init' task. * * This generated file contains a sample Java project to get you started. * For more details take a look at the Java Quickstart chapter in the Gradle * User Manual available at https://docs.gradle.org/6.5/userguide/tutorial_java_projects.html */ plugins { // Apply the java plugin to add support for Java id 'java' } repositories { mavenCentral() } dependencies { // This dependency is used by the application. implementation 'com.google.guava:guava:31.1-jre' // Use JUnit test framework testImplementation 'junit:junit:4.13.2' } allprojects { repositories { mavenCentral() } } subprojects { version = '1.0' plugins.withId('java') { java { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } } }