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' id 'maven-publish'
} }
group = 'be.seeseemelk' allprojects {
version = '0.1-SNAPSHOT' group = 'be.seeseemelk'
version = '0.1-SNAPSHOT'
}
publishing { publishing {
repositories { repositories {

View File

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

View File

@ -1,20 +1,18 @@
plugins { plugins {
id 'java' id 'java-library'
id 'io.freefair.lombok' version '8.10' id 'io.freefair.lombok' version '8.10'
id 'org.springframework.boot' version '3.3.2'
} }
apply plugin: 'io.spring.dependency-management'
repositories { repositories {
mavenCentral() mavenCentral()
maven{ url 'https://gitea.seeseepuff.be/api/packages/llamascript/maven' }
} }
dependencies { dependencies {
implementation project(':libllamascript') implementation 'org.springframework.boot:spring-boot:3.3.2'
implementation 'org.springframework.boot:spring-boot' implementation 'org.springframework.boot:spring-boot-autoconfigure:3.3.2'
implementation 'org.springframework.boot:spring-boot-autoconfigure' implementation 'org.springframework.boot:spring-boot-configuration-processor:3.3.2'
implementation 'org.springframework.boot:spring-boot-configuration-processor' api project(':libllamascript')
testImplementation platform('org.junit:junit-bom:5.10.0') testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter' testImplementation 'org.junit.jupiter:junit-jupiter'