-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
50 lines (42 loc) · 1.1 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.13.3'
}
group 'com.luigivampa92.remoteandroidbuilds'
version '0.4.1'
sourceCompatibility = 1.8 // todo fix to 11 ?
targetCompatibility = 1.8
repositories {
mavenCentral()
maven {
url 'https://www.jetbrains.com/intellij-repository/releases'
}
}
tasks {
buildSearchableOptions {
enabled = false
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
intellij {
pluginName = 'SkyForge'
type = 'AI'
version = 'AI-213.7172.25.2113.9014738'
// version = 'AI-241.14494.158.2411.11648550'
plugins = ['android']
}
patchPluginXml {
version = rootProject.version
sinceBuild = "213"
untilBuild = "241.*"
pluginDescription = file("extra/pluginDescription.html").text
changeNotes = file("extra/pluginChangeNotes.html").text
}
signPlugin {
certificateChainFile = file("signing/chain.crt")
privateKeyFile = file("signing/private.pem")
def passwordFile = file("signing/private_key_password")
password = passwordFile.exists() ? passwordFile.text : ""
}