aboutsummaryrefslogtreecommitdiff
path: root/pom.gradle
diff options
context:
space:
mode:
authorRobert Jaros <rjaros@finn.pl>2018-04-25 08:03:34 +0200
committerRobert Jaros <rjaros@finn.pl>2018-04-25 08:03:34 +0200
commit810a3abf13e18570d35808a1172dd34f516c0493 (patch)
tree0ea2cfd1c45d12c3c3e5d472eec0ec52702fd888 /pom.gradle
parentee64df23bb6ccb2d502f4b0c6fe561ebf6865ca3 (diff)
downloadkvision-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.gradle33
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