Working spring project

This commit is contained in:
Sebastiaan de Schaetzen 2024-08-21 11:32:12 +02:00
parent 3ccc0dd265
commit 14d13a7d76
3 changed files with 11 additions and 11 deletions

View File

@ -2,8 +2,10 @@ plugins {
id 'maven-publish'
}
allprojects {
group = 'be.seeseemelk'
version = '0.1-SNAPSHOT'
}
publishing {
repositories {

View File

@ -1,5 +1,5 @@
plugins {
id 'java'
id 'java-library'
id 'io.freefair.lombok' version '8.10'
}

View File

@ -1,20 +1,18 @@
plugins {
id 'java'
id 'java-library'
id 'io.freefair.lombok' version '8.10'
id 'org.springframework.boot' version '3.3.2'
}
apply plugin: 'io.spring.dependency-management'
repositories {
mavenCentral()
maven{ url 'https://gitea.seeseepuff.be/api/packages/llamascript/maven' }
}
dependencies {
implementation project(':libllamascript')
implementation 'org.springframework.boot:spring-boot'
implementation 'org.springframework.boot:spring-boot-autoconfigure'
implementation 'org.springframework.boot:spring-boot-configuration-processor'
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'