Skip to content

Commit

Permalink
adjust dependencies & add java object sourceCompatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
hknots committed Oct 30, 2024
1 parent e8fce39 commit 7507721
Showing 1 changed file with 11 additions and 17 deletions.
28 changes: 11 additions & 17 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ plugins {

group = 'no.fintlabs'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
java {
sourceCompatibility = JavaVersion.VERSION_17
}

configurations {
compileOnly {
Expand All @@ -20,38 +22,30 @@ jar {
}

repositories {
mavenCentral()
repositories {
maven {
url "https://repo.fintlabs.no/releases"
}
}
mavenLocal()
maven {
url "https://repo.fintlabs.no/releases"
}
mavenCentral()
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'

implementation 'io.netty:netty-resolver-dns-native-macos:4.1.86.Final:osx-aarch_64'

implementation 'no.fintlabs:fint-core-adapter-common:0.1.6-rc-3'
implementation "no.fint:fint-personvern-resource-model-java:${apiVersion}"
implementation "no.fint:fint-felles-resource-model-java:${apiVersion}"
implementation 'no.fint:fint-event-model:3.0.2'
implementation 'no.fint:fint-model-resource:0.4.1'
implementation 'no.fintlabs:fint-metamodell-model-java:1.1.0'

implementation 'no.fintlabs:fint-core-adapter-common:0.1.6-rc-3'
implementation 'org.postgresql:postgresql'

runtimeOnly 'org.springframework.boot:spring-boot-actuator'
testImplementation 'org.springframework.boot:spring-boot-starter-test'

runtimeOnly 'org.spockframework:spock-spring:2.1-groovy-3.0'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
runtimeOnly 'org.spockframework:spock-spring:2.1-groovy-3.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.spockframework:spock-core:2.1-groovy-3.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
Expand Down

0 comments on commit 7507721

Please sign in to comment.