-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (40 loc) · 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
buildscript {
ext.kotlin_version = '1.0.1-2'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "org.jetbrains.intellij" version "0.0.43"
}
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'kotlin'
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6
intellij {
version '15.0.4'
pluginName 'PermissionsDispatcher plugin'
alternativeIdePath '/Applications/Android Studio.app'
updateSinceUntilBuild = false
sameSinceUntilBuild = false
publish {
username 'shiraji'
password System.getenv('PASSWORD')
pluginId '8349'
}
}
group 'com.github.shiraji.permissionsdispatcherplugin'
version '1.0.0'
repositories {
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.12'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}