mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-15 00:32:06 +01:00
07d9d694da
To denote that Smack now requires at least Java 11 to run. Fixes SMACK-953.
20 lines
530 B
Groovy
20 lines
530 B
Groovy
plugins {
|
|
id 'org.igniterealtime.smack.java-common-conventions'
|
|
}
|
|
|
|
description = """\
|
|
Smack for Java 11 (or higher).
|
|
This is a pseudo-artifact that pulls all the required dependencies to
|
|
run Smack on Java 11 (or higher) JVMs. Usually you want to add additional
|
|
dependencies to smack-tcp, smack-extensions and smack-experimental."""
|
|
|
|
dependencies {
|
|
api project(":smack-core")
|
|
api project(":smack-resolver-javax")
|
|
api project(":smack-sasl-javax")
|
|
implementation project(":smack-xmlparser-stax")
|
|
}
|
|
|
|
javadoc {
|
|
enabled = false
|
|
}
|