-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
77 lines (67 loc) · 2.03 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/**********************************************************************************
Repositories aus denen das Nerz-SWE-Plugin geladen werden kann.
Der Abschnitt kann entfallen, da das Plugin auf dem Gradle-Plugin-Server
publiziert wurde.
Für den lokalen Test der NERZ-SWE-Plugin-Entwicklung ist potentiell der
Zugriff auf das lokale MAVEN-Repository erforderlich.
**********************************************************************************/
/*
buildscript {
repositories {
mavenLocal()
}
dependencies {
classpath ':de.bsvrz.gradle.nerzswe:0.1.6'
}
}
apply plugin: 'de.bsvrz.gradle.nerzswe'
*/
plugins {
id "de.bsvrz.gradle.nerzswe" version "0.1.6"
id "com.jfrog.bintray" version "1.8.0"
}
nerzswe {
// mainClassName = ...
sweStatus = 'FREI'
sweDatum = '2017-11-17'
}
group = "de.bsvrz.sys"
description = "DUA BitCtrl Funktionsbibliothek"
version = '1.9.1'
/*
Repositories aus denen die Komponenten für den Build der SWE.
*/
repositories {
maven { url "http://dl.bintray.com/bitctrl/maven" }
mavenCentral()
}
/*
Abhängigkeiten der SWE.
*/
dependencies {
compile group: 'com.bitctrl', name: 'com.bitctrl', version:'2.0.2'
compile group: 'de.bsvrz.dav', name: 'de.bsvrz.dav.daf', version:'3.8.0'
compile group: 'de.bsvrz.pat', name: 'de.bsvrz.pat.onlprot', version:'3.8.0'
compile group: 'de.bsvrz.sys', name: 'de.bsvrz.sys.funclib.application', version:'3.8.0'
compile group: 'de.bsvrz.sys', name: 'de.bsvrz.sys.funclib.bitctrl', version:'1.5.0'
testCompile group: 'junit', name: 'junit', version:'4.12'
}
/* lokales Maven-Repositiory im build-Verzeichnis */
publishing {
repositories {
maven {
url "$buildDir/repo"
}
}
}
/* Veröffentlichung auf bintray. */
bintray {
user = project.hasProperty('user') ? property('user') : ""
key = project.hasProperty('key') ? property('key') : ""
publications = ['mavenJava']
pkg {
userOrg = 'bitctrl'
repo = 'maven'
name = 'de.bsvrz.sys.funclib.bitctrl.dua'
}
}