You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spring-boot/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-jooq/build.gradle

44 lines
1.1 KiB
Groovy

// plugins {
// id 'java'
// id 'nu.studer.jooq' version '3.0.3'
// id 'org.springframework.boot.conventions'
// }
//
// description = 'Spring Boot JOOQ smoke test'
//
// dependencies {
// implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jooq')
// jooqRuntime enforcedPlatform(project(':spring-boot-project:spring-boot-dependencies'))
// jooqRuntime 'com.h2database:h2'
// runtimeOnly 'com.h2database:h2'
//
// testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
// }
//
// jooq {
// version = '3.12.3'
// smokeTest(sourceSets.main) {
// jdbc {
// driver = 'org.h2.Driver'
// url = 'jdbc:h2:~/springbootjooq'
// }
// generator {
// name = 'org.jooq.codegen.DefaultGenerator'
// database {
// name = 'org.jooq.meta.h2.H2Database'
// includes = '.*'
// inputSchema = 'PUBLIC'
// }
// strategy {
// // name = 'smoketest.jooq.util.TangleFreeGeneratorStrategy'
// }
// target {
// packageName = 'smoketest.jooq.domain'
// }
// generate {
// records = false
// }
// }
// }
// }