From 960472be687c69ba17e30c09eab2fa76def12e81 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Tue, 14 Jun 2016 23:19:49 -0800 Subject: [PATCH] Forgot a set of interceptors. --- src/main/kotlin/com/beust/kobalt/Main.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/com/beust/kobalt/Main.kt b/src/main/kotlin/com/beust/kobalt/Main.kt index 6222b686..6f2b161d 100644 --- a/src/main/kotlin/com/beust/kobalt/Main.kt +++ b/src/main/kotlin/com/beust/kobalt/Main.kt @@ -293,6 +293,7 @@ private class Main @Inject constructor( runClasspathInterceptors(it, it.compileRuntimeDependencies) runClasspathInterceptors(it, it.testProvidedDependencies) runClasspathInterceptors(it, it.testDependencies) + runClasspathInterceptors(it, it.nativeDependencies) } }