Skip to content

Commit 6e34311

Browse files
authored
Merge pull request #4 from CodeIntelligenceTesting/update-gradle-settings
Remove unused entries from build.gradle
2 parents a5afd7b + 3c67024 commit 6e34311

1 file changed

Lines changed: 3 additions & 9 deletions

File tree

java/gradle/build.gradle

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,19 @@
99
plugins {
1010
// Apply the application plugin to add support for building a CLI application in Java.
1111
id 'application'
12-
id 'jacoco'
1312
}
1413

1514
repositories {
1615
// Use Maven Central for resolving dependencies.
1716
mavenCentral()
1817
}
1918

19+
2020
dependencies {
21-
// This dependency is used by the application.
22-
implementation 'com.google.guava:guava:31.1-jre'
21+
2322
}
2423

2524
application {
2625
// 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()
26+
mainClass = 'com.example.App'
3327
}

0 commit comments

Comments
 (0)