-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
102 lines (87 loc) · 2.99 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
plugins {
id "de.abas.esdk" version "0.14.3"
}
repositories {
maven { url "http://$NEXUS_HOST:$NEXUS_PORT/nexus/content/repositories/$NEXUS_NAME-SNAPSHOT" }
maven { url "http://$NEXUS_HOST:$NEXUS_PORT/nexus/content/repositories/$NEXUS_NAME" }
maven { url "https://registry.abas.sh/artifactory/abas.maven-public/" }
mavenCentral()
}
esdk {
app {
name = "groovyfo"
vendorId = "rm"
appId = "grvfo"
shared = false
infosystems = []
tables = []
screens = [:]
data = []
enums = []
namedTypes = []
languages = "DA"
essentialsVersions = ["2017r1n00-2017r4n16", "2018r1n00-2018r4n16", "2019r1n00-2019r4n17"]
}
abas {
homeDir = ABAS_HOMEDIR
clientDir = ABAS_CLIENTDIR
clientId = ABAS_CLIENTID
edpHost = EDP_HOST
edpPort = EDP_PORT.toInteger()
edpUser = EDP_USER
edpPassword = EDP_PASSWORD
}
nexus {
nexusHost = NEXUS_HOST
nexusPort = NEXUS_PORT.toInteger()
nexusRepoName = NEXUS_NAME
nexusUserName = NEXUS_USER_NAME
nexusPassword = NEXUS_PASSWORD
nexusVersion = NEXUS_VERSION
}
ssh {
host = SSH_HOST
port = SSH_PORT.toInteger()
user = SSH_USER
password = SSH_PASSWORD
key = SSH_KEY
}
installType = "SSH"
}
group = "de.finetech.groovy"
dependencies {
provided "de.abas.homedir:log4j:1.0.0"
provided "de.abas.homedir:abas-db-base:1.0.0"
provided "de.abas.homedir:jedp:1.0.0"
provided "de.abas.homedir:abas-jfop-runtime-api:1.0.0"
provided "de.abas.homedir:abas-erp-common:1.0.0"
provided "de.abas.homedir:abas-enums:1.0.0"
provided "de.abas.homedir:abas-jfopapi:1.0.0"
//provided "de.abas.homedir:groovy:1.0.0"
implementation "de.abas.homedir:abas-axi2:1.0.0"
implementation "de.abas.homedir:abas-axi:1.0.0"
implementation "de.abas.homedir:abas-db-internal:1.0.0"
implementation "de.abas.clientdir:abas-db:1.0.0-SNAPSHOT"
implementation "de.abas.clientdir:abas-db-infosys:1.0.0-SNAPSHOT"
implementation "de.abas.clientdir:abas-db-index:1.0.0-SNAPSHOT"
// custom
implementation "de.abas.homedir:abas-jfop-base:1.0.0"
implementation "de.abas.homedir:abas-jfop-runtime:1.0.0"
implementation "de.abas.homedir:abas-jfopapi:1.0.0"
implementation 'io.github.http-builder-ng:http-builder-ng-core:1.0.4'
implementation 'org.codehaus.groovy:groovy-all:2.5.13'
implementation 'org.codehaus.groovy:groovy-dateutil:2.5.13'
runtime "de.abas.homedir:commons-collections:1.0.0"
runtime "de.abas.homedir:abas-jfop-base:1.0.0"
runtime "de.abas.homedir:jcl-over-slf4j:1.0.0"
runtime "de.abas.homedir:slf4j-api:1.0.0"
runtime "de.abas.homedir:slf4j-log4j12:1.0.0"
// custom
runtime 'io.github.http-builder-ng:http-builder-ng-core:1.0.4'
runtime 'org.codehaus.groovy:groovy-all:2.5.13'
runtime 'org.codehaus.groovy:groovy-dateutil:2.5.13'
testImplementation "junit:junit:4.12"
testImplementation "org.hamcrest:hamcrest-all:1.3"
testImplementation 'de.abas.esdk.test.util:esdk-test-utils:0.0.3'
integTestImplementation "de.abas.homedir:abas-db-util:1.0.0"
}