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.