14 lines
335 B
Groovy
14 lines
335 B
Groovy
apply plugin: 'version-scan'
|
|
|
|
versionScan {
|
|
group = "org.apache.httpcomponents"
|
|
module = "httpclient"
|
|
versions = "[4.3,)"
|
|
legacyGroup = "commons-httpclient"
|
|
legacyModule = "commons-httpclient"
|
|
verifyPresent = [
|
|
"org.apache.http.conn.SchemePortResolver": null,
|
|
"org.apache.http.conn.ssl.SSLContexts" : null,
|
|
]
|
|
}
|