-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
50 lines (42 loc) · 1.07 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 'groovy'
id 'java'
id 'org.jetbrains.intellij' version '0.3.12'
id 'org.jetbrains.kotlin.jvm' version '1.2.71'
}
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
apply plugin: 'application'
group 'com.manuh'
version '1.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile 'org.codehaus.groovy:groovy-all:2.3.11'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
intellij {
version '2018.2.4'
pluginName 'GraphZeal'
plugins 'android'
alternativeIdePath '/home/manuh/android-studio'
updateSinceUntilBuild false
}
publishPlugin {
username intellijPublishUsername
password intellijPublishPassword
}
patchPluginXml {
changeNotes """
This Plugin is not Perfect -> it works but refer the readme for proper usage.<br>
<em>We accept all people interested to contibute to join us</em>"""
}