diff options
author | Robert Jaros <rjaros@finn.pl> | 2018-04-25 08:03:34 +0200 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2018-04-25 08:03:34 +0200 |
commit | 810a3abf13e18570d35808a1172dd34f516c0493 (patch) | |
tree | 0ea2cfd1c45d12c3c3e5d472eec0ec52702fd888 /pom.gradle | |
parent | ee64df23bb6ccb2d502f4b0c6fe561ebf6865ca3 (diff) | |
download | kvision-810a3abf13e18570d35808a1172dd34f516c0493.tar.gz kvision-810a3abf13e18570d35808a1172dd34f516c0493.tar.bz2 kvision-810a3abf13e18570d35808a1172dd34f516c0493.zip |
Upgrade Kotlin to 1.2.40 and kotlin-fronted-plugin to 0.0.30 (with webpack 4)
Dependencies on kotlinx.serialization and kotlinx.coroutines.
Diffstat (limited to 'pom.gradle')
-rw-r--r-- | pom.gradle | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/pom.gradle b/pom.gradle new file mode 100644 index 00000000..ccda8308 --- /dev/null +++ b/pom.gradle @@ -0,0 +1,33 @@ +def pomConfig = { + licenses { + license { + name "MIT" + url "https://opensource.org/licenses/MIT" + distribution "repo" + } + } + developers { + developer { + id "rjaros" + name "Robert Jaros" + organization "Treksoft" + organizationUrl "http://www.treksoft.pl" + } + } + + scm { + url "https://github.com/rjaros/kvision.git" + } +} + +def withPom = { pom -> + pom.withXml { + def root = asNode() + root.appendNode('name', project.name) + root.appendNode('description', 'Object oriented Web UI framework for Kotlin/JS') + root.appendNode('url', 'https://github.com/rjaros/kvision') + root.children().last() + pomConfig + } +} + +ext.withPom = withPom |