39 lines
920 B
Groovy

plugins {
id 'java-library'
id 'io.freefair.lombok' version '8.10'
}
repositories {
mavenCentral()
maven{ url 'https://gitea.seeseepuff.be/api/packages/llamascript/maven' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot:3.3.2'
implementation 'org.springframework.boot:spring-boot-autoconfigure:3.3.2'
implementation 'org.springframework.boot:spring-boot-configuration-processor:3.3.2'
api project(':libllamascript')
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.hamcrest:hamcrest:3.0'
}
test {
useJUnitPlatform()
}
java {
withSourcesJar()
withJavadocJar()
}
publishing {
publications {
springLlamascriptStarter(MavenPublication) {
from components.java
artifactId 'spring-llamascript-starter'
}
}
}