``` buildscript { repositories { jcent...
# detekt
x
Copy code
buildscript {
    repositories {
        jcenter()
    }
}

plugins {
    id("io.gitlab.arturbosch.detekt").version("[version]")
}
when will things work without the buildscript? (jcenter()) and/or does anyone know how to add jcenter like this in a plugin via java
c
Things should work without buildscript now, actually. https://plugins.gradle.org/plugin/io.gitlab.arturbosch.detekt For 1.* versions
x
hmm
I’ll have to come back to this later, but I’m guessing then my problem has to do with it not being on maven central, trying to add the plugin as a dependency of my plugin