aboutsummaryrefslogtreecommitdiff
path: root/kvision-modules/kvision-common-annotations
diff options
context:
space:
mode:
authorRobert Jaros <rjaros@finn.pl>2019-10-17 14:30:10 +0200
committerRobert Jaros <rjaros@finn.pl>2019-10-17 14:31:12 +0200
commitcb01930ae5174070aad9d1d7297e91b897340230 (patch)
tree320e6f7dece8161eab6a983199d2e88857f60d20 /kvision-modules/kvision-common-annotations
parent1830797fbe4a7fda6958b4a13d46acf121a5288d (diff)
downloadkvision-cb01930ae5174070aad9d1d7297e91b897340230.tar.gz
kvision-cb01930ae5174070aad9d1d7297e91b897340230.tar.bz2
kvision-cb01930ae5174070aad9d1d7297e91b897340230.zip
Kotlin compiler plugin and gradle plugin
Diffstat (limited to 'kvision-modules/kvision-common-annotations')
-rw-r--r--kvision-modules/kvision-common-annotations/build.gradle7
-rw-r--r--kvision-modules/kvision-common-annotations/src/main/kotlin/pl/treksoft/kvision/annotations/Annotations.kt26
2 files changed, 33 insertions, 0 deletions
diff --git a/kvision-modules/kvision-common-annotations/build.gradle b/kvision-modules/kvision-common-annotations/build.gradle
new file mode 100644
index 00000000..f62cd411
--- /dev/null
+++ b/kvision-modules/kvision-common-annotations/build.gradle
@@ -0,0 +1,7 @@
+apply plugin: 'kotlin-platform-common'
+apply plugin: 'kotlinx-serialization'
+
+dependencies {
+ compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlinVersion"
+ compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime-common:$serializationVersion"
+}
diff --git a/kvision-modules/kvision-common-annotations/src/main/kotlin/pl/treksoft/kvision/annotations/Annotations.kt b/kvision-modules/kvision-common-annotations/src/main/kotlin/pl/treksoft/kvision/annotations/Annotations.kt
new file mode 100644
index 00000000..02026f56
--- /dev/null
+++ b/kvision-modules/kvision-common-annotations/src/main/kotlin/pl/treksoft/kvision/annotations/Annotations.kt
@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2017-present Robert Jaros
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+package pl.treksoft.kvision.annotations
+
+@Target(AnnotationTarget.CLASS)
+annotation class KVService()
+