This repository was archived by the owner on Dec 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (37 loc) · 1.32 KB
/
build.gradle
File metadata and controls
49 lines (37 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
plugins {
id 'com.github.ben-manes.versions' version '0.21.0'
}
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'maven-publish'
sourceCompatibility = 1.8
group = 'no.fint'
repositories {
mavenCentral()
maven {
url "https://repo.fintlabs.no/releases"
}
mavenLocal()
}
apply from: 'https://raw.githubusercontent.com/FINTlibs/fint-buildscripts/v1.6.0/dependencies.gradle'
dependencies {
compile("no.fint:fint-felles-resource-model-java:3.10.0")
compile('no.fint:fint-model-resource:0.4.1')
compileOnly("org.projectlombok:lombok:${lombokVersion}")
testCompile("org.spockframework:spock-core:${spockSpringVersion}")
testCompile("org.spockframework:spock-spring:${spockSpringVersion}")
testCompile("org.springframework.boot:spring-boot-starter-web:${springBootVersion}")
testCompile("org.springframework.boot:spring-boot-starter-test:${springBootVersion}")
testCompile('org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE')
testCompile('org.springframework.hateoas:spring-hateoas:0.24.0.RELEASE')
}
task wrapper(type: Wrapper) {
gradleVersion = gradleVersion
}
test {
testLogging {
events 'passed', 'skipped', 'failed'
}
}
apply from: 'https://raw.githubusercontent.com/FINTLabs/fint-buildscripts/master/reposilite.gradle'