-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbuild.gradle
47 lines (38 loc) · 1023 Bytes
/
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
buildscript {
repositories {
mavenCentral()
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.3"
}
}
plugins {
id "org.jetbrains.intellij" version "0.1.6"
}
group 'ru.yole'
version '1.0'
apply plugin: 'java'
apply plugin: 'kotlin'
sourceCompatibility = 1.5
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:1.0.3"
compile "org.jetbrains.kotlin:kotlin-reflect:1.0.3"
compile 'com.github.yole.jitwatch:core:18be9ec'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
intellij {
version 'IC-2016.2'
plugins = ['org.jetbrains.kotlin:1.0.3-release-IJ2016.1-103']
publish {
username System.getenv('JETBRAINS_USER')
password System.getenv('JETBRAINS_PASSWORD')
}
}
project.afterEvaluate {
project.tasks.runIdea.maxHeapSize = "2048m"
}