forked from etf-validator/legacy-etf-sui-ae
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
64 lines (56 loc) · 2.17 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
///////////////////////////////////////////////////////////////////////////////////////
//
// ETF Adapters and extensions
//
///////////////////////////////////////////////////////////////////////////////////////
buildscript {
repositories {
maven {
url "https://services.interactive-instruments.de/etfdev-af/plugins-releases-local"
credentials {
// Our repository requires authenticating
username 'ii-bda'
password 'AP7mb4WA6F1ckdZkaE8Qx8GSowt'
}}
}
dependencies {
classpath group: 'de.interactive_instruments.bda', name: 'etf-bda', version: '[1.0.30,1.0.99]'
}
dependencies {
ant.unjar src: configurations.classpath.files.find {it.path.contains('etf')}, dest: 'build/gradle'
}
}
apply from: "build/gradle/ii-bda.gradle"
///////////////////////////////////////////////////////////////////////////////////////
group = 'de.interactive_instruments.etf.suim'
description = "ETF adapters and extensions for SoapUI"
allprojects {
if (project.name.startsWith("etf-sui-ae")) {
project.tasks.release.mustRunAfter(project.tasks.getByPath(':etf-sui-mapper:release'))
project.tasks.release.mustRunAfter(project.tasks.getByPath(':etf-sui-owsgtl:release'))
project.tasks.release.mustRunAfter(project.tasks.getByPath(':etf-sui-plugin:release'))
}else{
task preTagCommit(overwrite: true) {}
task createReleaseTag(overwrite: true) {}
task updateVersion(overwrite: true) {}
task commitNewVersion(overwrite: true) {}
task unSnapshotVersion(overwrite: true) {}
task updateVersion(overwrite: true) {}
task commitNewVersion(overwrite: true) {}
}
}
subprojects {
dependencies {
compile group: 'de.interactive_instruments', name: 'ii-commons-util', version:'3.0.0'+project.snapshotSuffix
compileOnly group: 'org.slf4j', name: 'slf4j-api', version: etf_slf4jApiVersion
compileOnly group: 'log4j', name: 'log4j', version: '1.2.17'
compileOnly group: 'de.interactive_instruments.etf', name: 'etf-core', version:'1.1.0'+project.snapshotSuffix
}
apply plugin: 'java'
apply plugin: 'maven'
apply from: "$rootProject.projectDir/gradle/soapuiDependencies.gradle"
version = rootProject.version
}
jar.enabled = false
uploadArchives.enabled = false
install.enabled = false