Quantcast
Channel: Gradle Forums - Latest posts
Viewing all articles
Browse latest Browse all 19859

Cannot apply plugin by id using kotlin DSL

$
0
0

My settings.gradle.kts:

pluginManagement {
    repositories {
        gradlePluginPortal()
        jcenter()
    }
}

rootProject.name = "plugin-problem"

And build.gradle.kts:

/*
 * This file was generated by the Gradle 'init' task.
 *
 * This is a general purpose Gradle build.
 * Learn how to create Gradle builds at https://guides.gradle.org/creating-new-gradle-builds
 */
plugins {
    id("com.github.sedovalx.gradle-aspectj-binary") version "1.0.37"
}

That’s all I have. I tried ./gradlew tasks, and it did not work.


Viewing all articles
Browse latest Browse all 19859

Trending Articles