-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
81 lines (70 loc) · 2.15 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
plugins {
id "de.abas.esdk" version "0.12.17"
}
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/" }
}
esdk {
app {
name = "replacementCatalogue"
vendorId = "ag"
appId = ""
shared = false
infosystems = ["IS.OW1.REPLACEMENTCATALOGUE"]
tables = ["Replacement"]
screens = ["Replacement:SparePart": ["A"]]
data = []
enums = ["SpareImportFileFormat"]
namedTypes = []
languages = "D"
essentialsVersions = ["2018r4n00-2018r4n17"]
}
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.abas.esdk.app'
dependencies {
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"
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"
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"
testImplementation "junit:junit:4.12"
testImplementation "org.hamcrest:hamcrest-all:1.3"
integTestImplementation 'de.abas.esdk.test.util:esdk-test-utils:0.0.2'
integTestImplementation "de.abas.homedir:abas-db-util:1.0.0"
}