spring-boot/spring-boot-project/spring-boot-sendgrid/build.gradle

24 lines
727 B
Groovy

plugins {
id "java-library"
id "org.springframework.boot.auto-configuration"
id "org.springframework.boot.configuration-properties"
id "org.springframework.boot.deployed"
id "org.springframework.boot.optional-dependencies"
}
description = "Spring Boot SendGrid"
dependencies {
api(project(":spring-boot-project:spring-boot"))
api("com.sendgrid:sendgrid-java") {
exclude group: "commons-logging", module: "commons-logging"
}
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
testImplementation(project(":spring-boot-project:spring-boot-test"))
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
testRuntimeOnly("ch.qos.logback:logback-classic")
}