-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (30 loc) · 1.32 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
//--------------------------------------------------------------------
// NERZ-SWE-Plugin
//--------------------------------------------------------------------
plugins {
id "de.bsvrz.gradle.nerzswe" version "0.8.0"
id "biz.aQute.bnd.builder" version "3.3.0"
}
//--------------------------------------------------------------------
// SWE-Eigenschaften
//--------------------------------------------------------------------
group = 'de.bsvrz.vew'
version = '2.1.1-SNAPSHOT'
description = 'SWE Verwaltung Systemkalender'
// Properties des NERZ-SWE-Plugins:
nerzswe {
sweStatus = 'BETA'
sweDatum = ''
}
//--------------------------------------------------------------------
// Abhängigkeiten
//--------------------------------------------------------------------
String kernsoftware_version = '3.10.0'
dependencies {
compile group: 'de.bsvrz.dav', name: 'de.bsvrz.dav.daf', version: kernsoftware_version
compile group: 'de.bsvrz.dav', name: 'de.bsvrz.dav.dav', version: kernsoftware_version
compile group: 'de.bsvrz.sys', name: 'de.bsvrz.sys.funclib.application', version: kernsoftware_version
compile group: 'de.bsvrz.sys', name: 'de.bsvrz.sys.funclib.dynobj', version:'1.3.1'
compile group: 'de.bsvrz.puk', name: 'de.bsvrz.puk.param.lib', version:'2.4.0'
compile group: 'junit', name: 'junit', version:'4.12'
}