1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 00:59:39 +02:00

Rename smack-java8(-full) to smack-java11(-full)

To denote that Smack now requires at least Java 11 to run. Fixes
SMACK-953.
This commit is contained in:
Florian Schmaus 2024-09-25 15:28:55 +02:00
parent 5d2ca5d7d3
commit 07d9d694da
28 changed files with 15 additions and 15 deletions

20
smack-java11/build.gradle Normal file
View file

@ -0,0 +1,20 @@
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
}