-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathbuild.gradle.kts
108 lines (98 loc) · 3.15 KB
/
build.gradle.kts
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
import com.vanniktech.maven.publish.JavadocJar.Dokka
import com.vanniktech.maven.publish.KotlinJvm
import com.vanniktech.maven.publish.MavenPublishBaseExtension
plugins {
kotlin("jvm")
`java-library`
id("com.vanniktech.maven.publish.base")
// Needed to generate jooq test db classes
id("org.flywaydb.flyway") version "9.14.1"
id("nu.studer.jooq") version "8.2"
}
dependencies {
api(libs.guava)
api(libs.guice)
api(libs.jooq)
api(libs.kotlinLogging)
api(project(":misk-core"))
api(project(":misk-inject"))
api(project(":misk-jdbc"))
implementation(libs.jakartaInject)
implementation(libs.kotlinRetry)
implementation(libs.kotlinxCoroutines)
implementation(project(":wisp:wisp-logging"))
testImplementation(libs.assertj)
testImplementation(libs.junitApi)
testImplementation(project(":wisp:wisp-deployment"))
testImplementation(project(":wisp:wisp-time-testing"))
testImplementation(project(":misk"))
testImplementation(testFixtures(project(":misk-jdbc")))
testImplementation(project(":misk-testing"))
// Needed to generate jooq test db classes
jooqGenerator(libs.mysql)
}
// Needed to generate jooq test db classes
buildscript {
dependencies {
classpath("org.flywaydb:flyway-gradle-plugin:10.11.1")
classpath(libs.mysql)
}
}
// Needed to generate jooq test db classes
flyway {
url = "jdbc:mysql://localhost:3500/misk-jooq-test-codegen"
user = "root"
password = "root"
schemas = arrayOf("jooq")
locations = arrayOf("filesystem:${project.projectDir}/src/test/resources/db-migrations")
sqlMigrationPrefix = "v"
}
// Needed to generate jooq test db classes
jooq {
version.set("3.18.2")
edition.set(nu.studer.gradle.jooq.JooqEdition.OSS)
configurations {
create("main") {
generateSchemaSourceOnCompilation.set(false)
jooqConfiguration.apply {
jdbc.apply {
driver = "com.mysql.cj.jdbc.Driver"
url = "jdbc:mysql://localhost:3500/misk-jooq-test-codegen"
user = "root"
password = "root"
}
generator.apply {
name = "org.jooq.codegen.KotlinGenerator"
database.apply {
name = "org.jooq.meta.mysql.MySQLDatabase"
inputSchema = "jooq"
outputSchema = "jooq"
includes = ".*"
excludes = "(.*?FLYWAY_SCHEMA_HISTORY)|(.*?schema_version)"
recordVersionFields = "version"
}
generate.apply {
isJavaTimeTypes = true
}
target.apply {
packageName = "misk.jooq.testgen"
directory = "${project.projectDir}/src/test/generated/kotlin"
}
}
}
}
}
}
// Needed to generate jooq test db classes
val generateJooq by project.tasks
generateJooq.dependsOn("flywayMigrate")
// Needed to generate jooq test db classes
// If you are using this as an example for your service, remember to add the generated code to your
// main source set instead of your tests as it is done below.
sourceSets.getByName("test").java.srcDirs
.add(File("${project.projectDir}/src/test/generated/kotlin"))
configure<MavenPublishBaseExtension> {
configure(
KotlinJvm(javadocJar = Dokka("dokkaGfm"))
)
}