2025-01-23 17:27:34 +00:00
|
|
|
plugins {
|
|
|
|
|
id 'java'
|
|
|
|
|
id 'org.springframework.boot' version '3.4.1'
|
|
|
|
|
id 'io.spring.dependency-management' version '1.1.7'
|
|
|
|
|
id 'org.graalvm.buildtools.native' version '0.10.4'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
group = 'dev.activitypub'
|
|
|
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
|
|
|
|
|
|
java {
|
|
|
|
|
toolchain {
|
|
|
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ext {
|
|
|
|
|
set('springShellVersion', "3.4.0")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2025-01-24 11:06:37 +00:00
|
|
|
implementation 'org.apache.tomcat.embed:tomcat-embed-jasper'
|
2025-01-23 17:27:34 +00:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-groovy-templates'
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
2025-01-25 02:57:50 +00:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
2025-01-23 17:27:34 +00:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-webflux'
|
2025-01-25 02:57:50 +00:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
2025-01-23 17:27:34 +00:00
|
|
|
implementation 'org.springframework.shell:spring-shell-starter'
|
2025-01-25 02:57:50 +00:00
|
|
|
implementation 'org.postgresql:postgresql'
|
2025-01-27 04:03:27 +00:00
|
|
|
implementation 'org.thymeleaf:thymeleaf-spring5:3.1.2.RELEASE'
|
2025-01-23 17:27:34 +00:00
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
|
|
|
testImplementation 'io.projectreactor:reactor-test'
|
|
|
|
|
testImplementation 'org.springframework.shell:spring-shell-starter-test'
|
|
|
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
2025-01-25 02:57:50 +00:00
|
|
|
|
|
|
|
|
compileOnly 'org.projectlombok:lombok'
|
|
|
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
|
|
|
testCompileOnly 'org.projectlombok:lombok'
|
|
|
|
|
testAnnotationProcessor 'org.projectlombok:lombok'
|
|
|
|
|
|
2025-01-23 17:27:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencyManagement {
|
|
|
|
|
imports {
|
|
|
|
|
mavenBom "org.springframework.shell:spring-shell-dependencies:${springShellVersion}"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.named('test') {
|
|
|
|
|
useJUnitPlatform()
|
|
|
|
|
}
|