-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
53 lines (42 loc) · 941 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
48
49
50
51
52
53
buildscript {
ext.kotlin_version = '1.2.51'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "org.jetbrains.intellij" version "0.3.2"
}
apply plugin: 'idea'
apply plugin: 'kotlin'
apply plugin: 'org.jetbrains.intellij'
group 'com.github.typ0520'
version '1.0.8'
intellij {
version '2017.1'
pluginName 'JsonToDartClass'
}
patchPluginXml {
untilBuild ''
}
publishPlugin {
username System.getenv('username')
password System.getenv('password')
channels System.getProperty('channels', "")
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile ('com.squareup:kotlinpoet:1.1.0'){
exclude group: "org.jetbrains.kotlin"
}
testImplementation('com.winterbe:expekt:0.5.0') {
exclude group: "org.jetbrains.kotlin"
}
}