Skip to content

Commit

Permalink
Added example
Browse files Browse the repository at this point in the history
  • Loading branch information
erwin-kok committed Dec 27, 2024
1 parent 64a77ec commit b07ab33
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
11 changes: 11 additions & 0 deletions kik-example/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
plugins {
id("kik.library")
id("org.erwinkok.kik.compiler-plugin")
}

dependencies {
implementation(platform(kotlin("bom")))
implementation(kotlin("stdlib"))

implementation(projects.kikTypeSystem)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package org.erwinkok.kik.typesystem

@KikType(group = "Group", kind = "Kind", version = "1.0")
class Test
1 change: 0 additions & 1 deletion kik-type-system/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id("kik.library")
alias(libs.plugins.compatibility)
id("org.erwinkok.kik.compiler-plugin")
}

dependencies {
Expand Down
2 changes: 2 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ includeBuild("kik-compiler-plugin")
includeBuild("kik-gradle-plugin")

include(":kik-type-system")

include(":kik-example")

0 comments on commit b07ab33

Please sign in to comment.