Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- description = "Model"
- tasks.compileJava {
- options.compilerArgs.add("-Xplugin:Manifold")
- }
- dependencies {
- implementation("org.aeonbits.owner:owner")
- implementation("io.qameta.allure:allure-testng") {
- exclude(group = "org.testng", module = "testng")
- }
- implementation("io.github.sskorol:test-data-supplier")
- implementation("org.testng:testng")
- implementation("org.vibur:vibur-object-pool")
- implementation("org.apache.commons:commons-lang3")
- implementation("org.aspectj:aspectjrt")
- implementation("org.aspectj:aspectjweaver")
- implementation("systems.manifold:manifold-ext")
- implementation("systems.manifold:manifold-ext-rt")
- compileOnly("com.google.code.findbugs:annotations")
- compileOnly("com.google.code.findbugs:jsr305")
- implementation("io.ebean:ebean")
- testImplementation("io.ebean:ebean")
- testImplementation("io.ebean:ebean-test")
- annotationProcessor("io.ebean:querybean-generator")
- testAnnotationProcessor("io.ebean:querybean-generator")
- annotationProcessor("systems.manifold:manifold-ext")
- annotationProcessor("org.projectlombok:lombok")
- compileOnly("org.projectlombok:lombok")
- testImplementation("org.projectlombok:lombok")
- testAnnotationProcessor("org.projectlombok:lombok")
- }
- sonarqube {
- properties {
- properties(
- hashMapOf<String, String>(
- "sonar.branch" to "model"
- )
- )
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment