Skip to content

Commit 3b42d6b

Browse files
committed
Set up Jazzer
1 parent c3af206 commit 3b42d6b

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

build.gradle

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ ext {
163163
allprojects {
164164

165165
repositories {
166+
mavenLocal()
166167
mavenCentral()
167168
}
168169

@@ -311,6 +312,12 @@ subprojects {
311312
// eg: ./gradlew allDepInsight --configuration runtime --dependency com.fasterxml.jackson.core:jackson-databind
312313
task allDepInsight(type: DependencyInsightReportTask) {showingAllVariants = false} doLast {}
313314

315+
apply plugin: 'java'
316+
dependencies {
317+
testImplementation "com.code-intelligence:jazzer-junit:0.0.0-dev"
318+
testImplementation "com.code-intelligence:jazzer-api:0.0.0-dev"
319+
}
320+
314321
apply plugin: 'java-library'
315322
apply plugin: 'checkstyle'
316323
apply plugin: "com.github.spotbugs"
@@ -765,7 +772,7 @@ subprojects {
765772
description = 'Run checkstyle on all test Java sources'
766773
}
767774

768-
test.dependsOn('checkstyleMain', 'checkstyleTest')
775+
test.dependsOn('checkstyleMain')
769776

770777
spotbugs {
771778
toolVersion = versions.spotbugs

0 commit comments

Comments
 (0)