Testing vdom

This commit is contained in:
2018-08-01 19:58:56 +02:00
parent 9b66633230
commit ae3820e86f
9 changed files with 573 additions and 131 deletions

View File

@@ -1,7 +1,8 @@
group 'nl.astraeus'
version '0.0.8-SNAPSHOT'
version '0.1.0-SNAPSHOT'
apply plugin: 'kotlin2js'
apply plugin: 'kotlin-dce-js'
apply plugin: 'idea'
apply plugin: 'maven'
apply plugin: 'maven-publish'
@@ -20,11 +21,11 @@ repositories {
}
ext {
kotlin_version = '1.2.21'
kotlin_version = '1.2.51'
}
buildscript {
ext.kotlin_version = '1.2.21'
ext.kotlin_version = '1.2.51'
repositories {
maven {
url "http://nexus.astraeus.nl/nexus/content/groups/public"
@@ -42,6 +43,7 @@ dependencies {
}
uploadArchives {
println 'user: ' + nexusUsername
repositories {
mavenDeployer {
repository(url: "http://nexus.astraeus.nl/nexus/content/repositories/releases") {
@@ -52,4 +54,11 @@ uploadArchives {
}
}
}
}
}
compileKotlin2Js {
kotlinOptions.sourceMap = true
kotlinOptions.sourceMapEmbedSources = "always"
// remaining configuration options
}