forked from FINTLabs/nam-smstoken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (32 loc) · 1.05 KB
/
build.gradle
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
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'maven'
sourceCompatibility = 1.8
jar {
version = '1.1.0'
baseName = 'nam-smstoken'
}
repositories {
mavenCentral()
flatDir {
dirs 'netiq'
}
}
apply from: 'https://raw.githubusercontent.com/FINTlibs/fint-buildscripts/v1.0.14/dependencies.gradle'
dependencies {
compile('org.projectlombok:lombok:1.16.18')
compile('org.slf4j:slf4j-api:1.7.25')
compile('org.apache.tomcat:tomcat-servlet-api:9.0.0.M26')
compile name: 'nidp'
compile name: 'NAMCommon'
//compile fileTree(dir: 'netiq', include: '*.jar')
testCompile name: 'jcc'
testCompile name: 'jgroups-all'
testCompile name: 'jsso'
testCompile name: 'nxpe'
testCompile('org.apache.commons:commons-lang3:3.6')
testCompile('cglib:cglib-nodep:3.2.5')
testCompile("org.springframework.boot:spring-boot-starter-test:${springBootVersion}")
testCompile("org.spockframework:spock-spring:${spockSpringVersion}")
testCompile("org.spockframework:spock-core:${spockSpringVersion}")
}