We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5afd7b commit 3c67024Copy full SHA for 3c67024
1 file changed
java/gradle/build.gradle
@@ -9,25 +9,19 @@
9
plugins {
10
// Apply the application plugin to add support for building a CLI application in Java.
11
id 'application'
12
- id 'jacoco'
13
}
14
15
repositories {
16
// Use Maven Central for resolving dependencies.
17
mavenCentral()
18
19
+
20
dependencies {
21
- // This dependency is used by the application.
22
- implementation 'com.google.guava:guava:31.1-jre'
23
24
25
application {
26
// Define the main class for the application.
27
- mainClass = 'com.github.CodeIntelligenceTesting.cifuzz.App'
28
-}
29
-
30
-tasks.named('test') {
31
- // Use JUnit Platform for unit tests.
32
- useJUnitPlatform()
+ mainClass = 'com.example.App'
33
0 commit comments