Deprecate itSettings

This commit is contained in:
Matthew de Detrich 2023-05-21 11:48:21 +02:00 committed by Matthew de Detrich
parent b5c3c4836f
commit e3c7bc7d8f
No known key found for this signature in database
GPG Key ID: 196CBC8FEAA4CC64
1 changed files with 4 additions and 0 deletions

View File

@ -2603,6 +2603,10 @@ object Defaults extends BuildCommon {
lazy val testSettings: Seq[Setting[_]] = configSettings ++ testTasks
@nowarn
@deprecated(
"Create a separate subproject instead of using IntegrationTest and in addition avoid using itSettings",
"1.9.0"
)
lazy val itSettings: Seq[Setting[_]] = inConfig(IntegrationTest) {
testSettings
}