-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.gradle
60 lines (53 loc) · 1.14 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
57
58
59
60
buildscript {
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
url 'https://dl.bintray.com/jetbrains/intellij-plugin-service'
}
}
dependencies {
classpath "org.jetbrains.intellij.plugins:gradle-intellij-plugin:1.1.4"
}
}
plugins {
id "org.jetbrains.intellij" version "1.1.4"
}
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
intellij {
type = 'IC'
version = '2021.2' // https://www.jetbrains.com/intellij-repository/[releases|snapshots]
pluginName = 'AppleScript Support'
updateSinceUntilBuild = false
plugins = [
'java',
'PsiViewer:212-SNAPSHOT'
]
}
compileJava {
sourceCompatibility = '11'
targetCompatibility = '11'
}
sourceSets {
main {
java {
srcDirs 'src/main/gen'
}
resources{
exclude '**.bnf'
exclude '**.flex'
}
}
}
group 'com.intellij.plugin'
version '0.121'
repositories {
flatDir {
dirs 'lib'
}
mavenCentral()
}