sskorol

Model build module

Sep 2nd, 2022
1,152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 1.46 KB | None | 0 0
  1. description = "Model"
  2.  
  3. tasks.compileJava {
  4.     options.compilerArgs.add("-Xplugin:Manifold")
  5. }
  6.  
  7. dependencies {
  8.     implementation("org.aeonbits.owner:owner")
  9.     implementation("io.qameta.allure:allure-testng") {
  10.         exclude(group = "org.testng", module = "testng")
  11.     }
  12.     implementation("io.github.sskorol:test-data-supplier")
  13.     implementation("org.testng:testng")
  14.     implementation("org.vibur:vibur-object-pool")
  15.     implementation("org.apache.commons:commons-lang3")
  16.     implementation("org.aspectj:aspectjrt")
  17.     implementation("org.aspectj:aspectjweaver")
  18.     implementation("systems.manifold:manifold-ext")
  19.     implementation("systems.manifold:manifold-ext-rt")
  20.  
  21.     compileOnly("com.google.code.findbugs:annotations")
  22.     compileOnly("com.google.code.findbugs:jsr305")
  23.  
  24.     implementation("io.ebean:ebean")
  25.     testImplementation("io.ebean:ebean")
  26.     testImplementation("io.ebean:ebean-test")
  27.     annotationProcessor("io.ebean:querybean-generator")
  28.     testAnnotationProcessor("io.ebean:querybean-generator")
  29.  
  30.     annotationProcessor("systems.manifold:manifold-ext")
  31.     annotationProcessor("org.projectlombok:lombok")
  32.     compileOnly("org.projectlombok:lombok")
  33.     testImplementation("org.projectlombok:lombok")
  34.     testAnnotationProcessor("org.projectlombok:lombok")
  35. }
  36.  
  37. sonarqube {
  38.     properties {
  39.         properties(
  40.             hashMapOf<String, String>(
  41.                 "sonar.branch" to "model"
  42.             )
  43.         )
  44.     }
  45. }
  46.  
Advertisement
Add Comment
Please, Sign In to add comment