-
Notifications
You must be signed in to change notification settings - Fork 336
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (22 loc) · 943 Bytes
/
build.gradle
File metadata and controls
27 lines (22 loc) · 943 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
muzzle {
pass {
group = "org.apache.synapse"
module = "synapse-nhttp-transport"
versions = "[3,)"
}
}
apply from: "$rootDir/gradle/java.gradle"
addTestSuiteForDir('latestDepTest', 'test')
configurations.configureEach {
// the version used by Synapse isn't available in a public repository - we don't need it, so exclude it
exclude group: 'org.snmp4j', module: 'snmp4j'
exclude group: 'org.snmp4j', module: 'snmp4j-agent'
exclude group: 'org.wso2.caching', module: 'wso2caching-core'
exclude group: 'org.wso2.eventing', module: 'wso2eventing-api'
exclude group: 'org.wso2.uri.template', module: 'wso2-uri-templates'
}
dependencies {
compileOnly group: 'org.apache.synapse', name: 'synapse-nhttp-transport', version: '3.0.0'
testImplementation group: 'org.apache.synapse', name: 'synapse-core', version: '3.0.0'
latestDepTestImplementation group: 'org.apache.synapse', name: 'synapse-core', version: '+'
}