34 lines
896 B
Groovy
34 lines
896 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '3.5.3'
|
|
id 'io.spring.dependency-management' version '1.1.7'
|
|
}
|
|
|
|
group = 'click.kamil'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.springframework.boot:spring-boot-starter-webflux'
|
|
implementation 'org.springframework.boot:spring-boot-starter-artemis' // For JMS
|
|
implementation 'org.springframework.boot:spring-boot-starter-amqp' // For RabbitMQ
|
|
implementation 'org.springframework.statemachine:spring-statemachine-starter:3.2.0'
|
|
|
|
compileOnly 'org.projectlombok:lombok'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
}
|
|
|
|
bootJar { enabled = false }
|
|
jar { enabled = true }
|