This repository was archived by the owner on Apr 10, 2024. 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
48 lines (38 loc) · 1.38 KB
/
build.gradle
File metadata and controls
48 lines (38 loc) · 1.38 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.jfrog.bintray' version '1.8.0'
id 'com.github.ben-manes.versions' version '0.17.0'
}
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'maven'
sourceCompatibility = 1.8
repositories {
maven {
url "http://dl.bintray.com/fint/maven"
}
mavenLocal()
jcenter()
}
apply from: 'https://raw.githubusercontent.com/FINTlibs/fint-buildscripts/v1.3.0/dependencies.gradle'
dependencies {
compile("no.fint:fint-felles-model-java:${version}")
compile('no.fint:fint-model-resource:0.3.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'
}
}
if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey')) {
apply from: 'https://raw.githubusercontent.com/FINTlibs/fint-buildscripts/v1.3.0/bintray.gradle'
}