-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
25 lines (20 loc) · 911 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
25 lines (20 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import org.jetbrains.intellij.platform.gradle.extensions.intellijPlatform
rootProject.name = "intellij-luau"
// The block with plugin versions is intentionally kept inside the gradle libs.versions since it's better.
// They moved it here to simplify the setup for newbies
plugins {
// They added this back in 2.0.2, but I have no idea why.
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
id("org.jetbrains.intellij.platform.settings") version "2.16.0"
}
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
// Configure all projects' repositories
repositories {
mavenCentral()
// IntelliJ Platform Gradle Plugin Repositories Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-repositories-extension.html
intellijPlatform {
defaultRepositories()
}
}
}