You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
405 B
Groovy
23 lines
405 B
Groovy
pluginManagement {
|
|
plugins {
|
|
id 'com.google.devtools.ksp' version '1.6.21-1.0.5'
|
|
id 'org.jetbrains.kotlin.jvm' version '1.6.21'
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'kotatsu-parsers'
|
|
include 'kotatsu-parsers-ksp'
|
|
|