Add open-all plugin

This commit is contained in:
Emil Simeonov 2025-02-16 02:41:13 +01:00
parent b0c0c8464a
commit 6f762a40eb
2 changed files with 9 additions and 0 deletions

View File

@ -6,6 +6,7 @@ plugins {
alias(libs.plugins.kotlinMultiplatform) alias(libs.plugins.kotlinMultiplatform)
alias(libs.plugins.androidLibrary) alias(libs.plugins.androidLibrary)
id("dev.mokkery") version "2.0.0" id("dev.mokkery") version "2.0.0"
kotlin("plugin.allopen") version "2.1.10"
} }
kotlin { kotlin {
@ -49,3 +50,8 @@ android {
targetCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8
} }
} }
allOpen {
annotation("com.tle.astrologylibrary.OpenForMokkery")
// annotations("com.another.Annotation", "com.third.Annotation")
}

View File

@ -0,0 +1,3 @@
package com.tle.astrologylibrary
annotation class OpenForMokkery()