Skip to content

Commit d8302f8

Browse files
Merge pull request #6 from Commencis/bugfix/5-gradle-kotlin-dsl
#5: Make plugin extensions visible in Kotlin DSL
2 parents 7367051 + 9164e37 commit d8302f8

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.1.1
2+
3+
### Fixed
4+
- Make extensions visible in Kotlin DSL
5+
16
# 0.1.0
27

38
### Added

secretsvaultplugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ configure<DetektExtension> {
5151
}
5252

5353
group = "com.commencis.secretsvaultplugin"
54-
version = "0.1.0"
54+
version = "0.1.1"

secretsvaultplugin/src/main/kotlin/com/commencis/secretsvaultplugin/extensions/CMakeExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import org.gradle.api.provider.Property
99
* If not specified, the name of the module to which the plugin is applied will be used.
1010
* @property version The version of CMake. If not specified, [DEFAULT_CMAKE_VERSION] will be used.
1111
*/
12-
internal interface CMakeExtension {
12+
interface CMakeExtension {
1313
val projectName: Property<String>
1414
val version: Property<String>
1515
}

secretsvaultplugin/src/main/kotlin/com/commencis/secretsvaultplugin/extensions/SecretsVaultExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import java.io.File
2323
* @property cmake The CMake related configurations for the SecretVault. This includes properties like
2424
* the project name and version of CMake being used. Refer to [CMakeExtension] for detailed properties.
2525
*/
26-
internal interface SecretsVaultExtension {
26+
interface SecretsVaultExtension {
2727
val obfuscationKey: Property<String>
2828
val secretsFile: Property<File>
2929
val sourceSetSecretsMappingFile: Property<File>

0 commit comments

Comments
 (0)