plugins { id 'java' id 'application' id 'jvm-test-suite' id 'com.google.cloud.tools.jib' version '3.4.4' } application { mainClass = 'nu.marginalia.explorer.ExplorerMain' applicationName = 'explorer-service' } tasks.distZip.enabled = false apply from: "$rootProject.projectDir/docker.gradle" java { toolchain { languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion)) } } apply from: "$rootProject.projectDir/srcsets.gradle" dependencies { implementation project(':code:common:model') implementation project(':code:common:service') implementation project(':code:common:renderer') implementation project(':code:features-search:random-websites') implementation libs.bundles.slf4j implementation libs.prometheus implementation libs.notnull implementation libs.guava implementation dependencies.create(libs.guice.get()) { exclude group: 'com.google.guava' } implementation dependencies.create(libs.spark.get()) { exclude group: 'org.eclipse.jetty' } implementation libs.bundles.jetty implementation libs.opencsv implementation libs.trove implementation libs.fastutil implementation libs.bundles.gson implementation libs.bundles.mariadb testImplementation libs.bundles.slf4j.test testImplementation libs.bundles.junit testImplementation libs.mockito }