-
Notifications
You must be signed in to change notification settings - Fork 19
/
build.gradle
46 lines (39 loc) · 1011 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
buildscript {
ext.kotlin_version = '1.3.21'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'org.jetbrains.intellij' version '0.4.8'
id 'org.jetbrains.kotlin.jvm' version '1.4.0'
}
apply plugin: 'kotlin'
apply plugin: 'org.jetbrains.intellij'
repositories {
mavenCentral()
}
intellij {
//defines the version of IDEA distribution that the plugin will be built against
version 'IU-2019.2'
//use to build against latest EAP
// version 'IU-LATEST-EAP-SNAPSHOT'
// plugins to be used as build dependencies
plugins = ['JavaScriptLanguage', 'CSS', 'PostCSS']
//name is used for zip archive when building plugin
pluginName 'webstorm-styled-components'
downloadSources false
updateSinceUntilBuild false
}
sourceSets {
//mark directory as test sources
test {
java.srcDir 'src/test'
}
}
repositories {
mavenCentral()
}