forked from nosix/vue-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.gradle
29 lines (24 loc) · 885 Bytes
/
config.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
ext {
group_id = 'org.musyozoku'
vuekt_version = '1.0-SNAPSHOT'
vuekt_js2vue_version = '1.0-SNAPSHOT'
vuekt_plugin_version = '1.0-SNAPSHOT'
kotlin_version = '1.3.21'
gradle_node_version = '1.2.0'
kotlin_frontend_version = '0.0.45'
node_version = '11.10.0'
vue_version = '2.6.7'
aza_kotlin_css_version = '1.01'
licence_name = 'The Apache Software License, Version 2.0'
licence_url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
releaseTest = project.hasProperty('use_remote')
def version = project.getProperty('version')
if (version != 'unspecified') {
vuekt_version = version
vuekt_js2vue_version = version
vuekt_plugin_version = version
}
}
// Note:
// `gradle.properties` can not be used.
// `vuekt-plugin` project and `vue-kotlin` project depend on each other and can not be built.