-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (23 loc) · 897 Bytes
/
build.gradle
File metadata and controls
29 lines (23 loc) · 897 Bytes
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
//--------------------------------------------------------------------
// NERZ-SWE-Plugin
//--------------------------------------------------------------------
plugins {
id "de.bsvrz.gradle.nerzswe" version "0.34.0"
}
group = 'de.bitctrl.dav.toolset'
description = 'Tool zur Analyse eines Datenverteilerapplikation'
// Properties des NERZ-SWE-Plugins:
nerzswe {
mainClassName = 'de.bitctrl.dav.toolset.appanalyzer.AppAnalyzer'
sweStatus = 'BETA'
sweDatum = ''
}
//--------------------------------------------------------------------
// Abhängigkeiten
//--------------------------------------------------------------------
String kernsoftware_version = '3.19.2'
dependencies {
implementation "de.bsvrz.dav:de.bsvrz.dav.daf:$kernsoftware_version"
implementation "de.bsvrz.sys:de.bsvrz.sys.funclib.application:$kernsoftware_version"
testImplementation 'junit:junit:4.13.2'
}