-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (41 loc) · 1.42 KB
/
build.gradle
File metadata and controls
46 lines (41 loc) · 1.42 KB
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
allprojects {
group 'com.cvamp.nn'
version '1-SNAPSHOT'
}
task wrapper(type: Wrapper){
gradleVersion = '4.6'
distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
}
buildscript {
ext.kotlinVersion = '1.2.31'
repositories {
jcenter()
mavenCentral()
maven{ url "https://plugins.gradle.org/m2/"}
}
dependencies {
classpath "com.eriwen:gradle-js-plugin:2.14.1"
classpath "com.moowork.gradle:gradle-node-plugin:1.2.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
ext {
nodeVersion = '8.9.4'
qunitVersion = '2.5.1'
libraries = [
junit: "junit:junit:4.12",
kotlin_stdlib: "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion",
kotlin_stdlib_common: "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlinVersion",
kotlin_stdlib_js: "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlinVersion",
kotlin_test_annotations_common: "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlinVersion",
kotlin_test_common: "org.jetbrains.kotlin:kotlin-test-common:$kotlinVersion",
kotlin_test_js: "org.jetbrains.kotlin:kotlin-test-js:$kotlinVersion",
kotlin_test_junit: "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion",
]
}
subprojects {
repositories {
jcenter()
mavenCentral()
}
}