-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
32 lines (28 loc) · 974 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
buildscript {
ext.kotlin_version = '1.9.21'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin'
apply plugin: 'kotlin-kapt'
kapt {
correctErrorTypes = true
arguments {
arg("crystal.entityframework.useSuspend", "false")
arg("crystal.entityframework.documentation.generated", "${buildDir.absolutePath}/entity")
arg("crystal.entityframework.documentation.fileName", "demo.html")
arg("crystal.entityframework.schema.generated", "${buildDir.absolutePath}/entity_schema")
arg("crystal.entityframework.schema.fileName", "demo_schema.json")
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(path: ':crystal-map-api')
kapt project(path: ':crystal-map-processor')
compileOnly project(path: ':crystal-map-processor')
}