From 06400730bde046034d1abebf0540f439f53ecbe1 Mon Sep 17 00:00:00 2001 From: Vasi Vasireddy Date: Fri, 6 Oct 2023 11:42:20 -0700 Subject: [PATCH] Change plugin type to library --- adot-testbed/app/build.gradle.kts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/adot-testbed/app/build.gradle.kts b/adot-testbed/app/build.gradle.kts index 8580a4421..a1a845a59 100644 --- a/adot-testbed/app/build.gradle.kts +++ b/adot-testbed/app/build.gradle.kts @@ -7,7 +7,7 @@ plugins { // Apply the application plugin to add support for building a CLI application in Java. - application + id ("java-library") } repositories { @@ -35,11 +35,6 @@ java { } } -application { - // Define the main class for the application. - mainClass.set("adot.testbed.App") -} - tasks.named("test") { // Use JUnit Platform for unit tests. useJUnitPlatform()