mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
14 lines
352 B
Plaintext
14 lines
352 B
Plaintext
// Use IntelliJ Platform Gradle Plugin snapshot repository
|
|
pluginManagement {
|
|
repositories {
|
|
maven("https://oss.sonatype.org/content/repositories/snapshots/")
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
|
}
|
|
|
|
rootProject.name = "IntelliJ Platform Plugin Template"
|