-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (46 loc) · 1.41 KB
/
build.gradle
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
buildscript {
repositories {
maven { url 'https://cache-redirector.jetbrains.com/intellij-repository/snapshots' }
mavenCentral()
}
dependencies {
classpath("com.jetbrains.rd:rd-gen:2023.3.2") // https://search.maven.org/artifact/com.jetbrains.rd/rd-gen
}
}
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.9.22'
id 'org.jetbrains.intellij' version '1.17.4' // https://github.com/JetBrains/gradle-intellij-plugin/releases
id 'me.filippov.gradle.jvm.wrapper' version '0.14.0'
}
repositories {
maven { url 'https://cache-redirector.jetbrains.com/intellij-repository/snapshots' }
maven { url 'https://cache-redirector.jetbrains.com/maven-central' }
}
group 'com.reallyliri.plugins'
version '1.6.1'
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
tasks.withType(KotlinJvmCompile).configureEach {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_17)
}
}
dependencies {
}
intellij {
// see https://www.jetbrains.com/intellij-repository/releases
type = 'RD'
version = "2024.1.3"
downloadSources = true
}
publishPlugin {
token = System.getenv("ORG_GRADLE_PROJECT_intellijPublishToken")
}