|
| 1 | +import org.jetbrains.kotlin.gradle.tasks.KotlinCompile |
| 2 | + |
| 3 | +val mockkVersion = "1.10.5" |
| 4 | +val h2Version = "1.4.200" |
| 5 | +val tokenValidationVersion = "1.3.2" |
| 6 | +val logstashVersion = "6.6" |
| 7 | +val springSleuthVersion = "3.0.0" |
| 8 | +val unleashVersion = "3.3.3" |
| 9 | +val problemSpringWebStartVersion = "0.26.2" |
| 10 | +val kafkaAvroVersion = "5.5.2" |
| 11 | +val pdfboxVersion = "2.0.19" |
| 12 | +val springRetryVersion = "1.3.1" |
| 13 | +val springMockkVersion = "3.0.1" |
| 14 | +val springFoxVersion = "3.0.0" |
| 15 | +val testContainersVersion = "1.15.1" |
| 16 | +val tikaVersion = "1.24.1" |
| 17 | +val nimbusVersion = "8.20.1" |
| 18 | +val threeTenExtraVersion = "1.6.0" |
| 19 | +val shedlockVersion = "4.23.0" |
| 20 | +val archunitVersion = "0.19.0" |
| 21 | +val verapdfVersion = "1.18.8" |
| 22 | + |
| 23 | +val githubUser: String by project |
| 24 | +val githubPassword: String by project |
| 25 | + |
| 26 | +repositories { |
| 27 | + mavenCentral() |
| 28 | + maven("https://github-package-registry-mirror.gc.nav.no/cached/maven-release") |
| 29 | + maven { |
| 30 | + url = uri("https://maven.pkg.github.com/navikt/simple-slack-poster") |
| 31 | + credentials { |
| 32 | + username = githubUser |
| 33 | + password = githubPassword |
| 34 | + } |
| 35 | + } |
| 36 | + jcenter() |
| 37 | + maven("https://packages.confluent.io/maven/") |
| 38 | +} |
| 39 | + |
| 40 | +plugins { |
| 41 | + id("org.jetbrains.kotlin.jvm") version "1.4.10" |
| 42 | + id("org.springframework.boot") version "2.4.2" |
| 43 | + id("org.jetbrains.kotlin.plugin.spring") version "1.4.21" |
| 44 | + id("org.jetbrains.kotlin.plugin.jpa") version "1.4.21" |
| 45 | + idea |
| 46 | +} |
| 47 | + |
| 48 | +apply(plugin = "io.spring.dependency-management") |
| 49 | + |
| 50 | +dependencies { |
| 51 | + implementation(kotlin("stdlib")) |
| 52 | + |
| 53 | + //temporary fix: |
| 54 | + implementation("com.nimbusds:nimbus-jose-jwt:$nimbusVersion") |
| 55 | + implementation("org.threeten:threeten-extra:$threeTenExtraVersion") |
| 56 | + |
| 57 | + implementation("org.springframework.boot:spring-boot-starter-web") |
| 58 | + implementation("org.springframework.boot:spring-boot-starter-actuator") |
| 59 | + implementation("org.springframework.boot:spring-boot-starter-webflux") |
| 60 | + implementation("org.springframework.boot:spring-boot-starter-validation") |
| 61 | + implementation("org.springframework.boot:spring-boot-starter-cache") |
| 62 | + implementation("javax.cache:cache-api") |
| 63 | + implementation("org.ehcache:ehcache") |
| 64 | + implementation("org.springframework.boot:spring-boot-starter-data-jdbc") |
| 65 | + implementation("org.springframework.boot:spring-boot-starter-data-jpa") |
| 66 | + implementation("org.springframework.boot:spring-boot-starter-data-elasticsearch") |
| 67 | + |
| 68 | + implementation("net.javacrumbs.shedlock:shedlock-spring:$shedlockVersion") |
| 69 | + implementation("net.javacrumbs.shedlock:shedlock-provider-jdbc-template:$shedlockVersion") |
| 70 | + |
| 71 | + implementation("org.springframework.kafka:spring-kafka") |
| 72 | + implementation("io.confluent:kafka-avro-serializer:$kafkaAvroVersion") { |
| 73 | + exclude(group = "org.slf4j", module = "slf4j-log4j12") |
| 74 | + } |
| 75 | + |
| 76 | + implementation("org.springframework.cloud:spring-cloud-starter-sleuth:$springSleuthVersion") |
| 77 | + implementation("io.springfox:springfox-boot-starter:$springFoxVersion") |
| 78 | + |
| 79 | + implementation("org.projectreactor:reactor-spring:1.0.1.RELEASE") |
| 80 | + |
| 81 | + implementation("org.flywaydb:flyway-core") |
| 82 | + implementation("com.zaxxer:HikariCP") |
| 83 | + implementation("org.postgresql:postgresql") |
| 84 | + |
| 85 | + implementation("io.micrometer:micrometer-registry-prometheus") |
| 86 | + implementation("io.micrometer:micrometer-registry-influx") |
| 87 | + implementation("ch.qos.logback:logback-classic") |
| 88 | + implementation("net.logstash.logback:logstash-logback-encoder:$logstashVersion") |
| 89 | + implementation("com.fasterxml.jackson.module:jackson-module-kotlin") |
| 90 | + implementation("com.kjetland:mbknor-jackson-jsonschema_2.13:1.0.39") |
| 91 | + implementation("com.papertrailapp:logback-syslog4j:1.0.0") |
| 92 | + |
| 93 | + implementation("org.redundent:kotlin-xml-builder:1.7.3") |
| 94 | + |
| 95 | + implementation("no.nav.security:token-validation-spring:$tokenValidationVersion") |
| 96 | + implementation("no.nav.security:token-client-spring:$tokenValidationVersion") |
| 97 | + |
| 98 | + implementation("no.nav.slackposter:simple-slack-poster:5") |
| 99 | + implementation("org.springframework.retry:spring-retry:$springRetryVersion") |
| 100 | + implementation("no.finn.unleash:unleash-client-java:$unleashVersion") |
| 101 | + implementation("org.zalando:problem-spring-web-starter:$problemSpringWebStartVersion") |
| 102 | + |
| 103 | + implementation("org.verapdf:validation-model:$verapdfVersion") |
| 104 | + implementation("org.apache.pdfbox:pdfbox:$pdfboxVersion") |
| 105 | + implementation("org.apache.tika:tika-core:$tikaVersion") |
| 106 | + |
| 107 | + testImplementation("io.mockk:mockk:$mockkVersion") |
| 108 | + testImplementation("com.ninja-squad:springmockk:$springMockkVersion") |
| 109 | + |
| 110 | + testImplementation("org.springframework.boot:spring-boot-starter-test") { |
| 111 | + exclude(group = "org.junit.vintage") |
| 112 | + exclude(group = "org.mockito") |
| 113 | + } |
| 114 | + testImplementation("org.testcontainers:testcontainers:$testContainersVersion") |
| 115 | + testImplementation("org.testcontainers:junit-jupiter:$testContainersVersion") |
| 116 | + testImplementation("org.testcontainers:elasticsearch:$testContainersVersion") |
| 117 | + testImplementation("org.testcontainers:postgresql:$testContainersVersion") |
| 118 | + testImplementation("org.springframework.kafka:spring-kafka-test") |
| 119 | + testImplementation("com.tngtech.archunit:archunit-junit5:$archunitVersion") |
| 120 | +} |
| 121 | + |
| 122 | +idea { |
| 123 | + module { |
| 124 | + isDownloadJavadoc = true |
| 125 | + } |
| 126 | +} |
| 127 | + |
| 128 | +tasks.withType<KotlinCompile> { |
| 129 | + kotlinOptions.jvmTarget = "11" |
| 130 | +} |
| 131 | + |
| 132 | +tasks.withType<Test> { |
| 133 | + useJUnitPlatform() |
| 134 | + testLogging { |
| 135 | + events("passed", "skipped", "failed") |
| 136 | + } |
| 137 | +} |
| 138 | + |
| 139 | +tasks.getByName<org.springframework.boot.gradle.tasks.bundling.BootJar>("bootJar") { |
| 140 | + this.archiveFileName.set("app.jar") |
| 141 | +} |
| 142 | + |
| 143 | +kotlin.sourceSets["main"].kotlin.srcDirs("src/main/kotlin") |
| 144 | +kotlin.sourceSets["test"].kotlin.srcDirs("src/test/kotlin") |
| 145 | + |
| 146 | +sourceSets["main"].resources.srcDirs("src/main/resources") |
| 147 | +sourceSets["test"].resources.srcDirs("src/test/resources") |
0 commit comments