Skip to content

Commit

Permalink
Merge pull request #6 from Commencis/bugfix/5-gradle-kotlin-dsl
Browse files Browse the repository at this point in the history
#5: Make plugin extensions visible in Kotlin DSL
  • Loading branch information
agabeyalioglu authored Nov 17, 2023
2 parents 7367051 + 9164e37 commit d8302f8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.1.1

### Fixed
- Make extensions visible in Kotlin DSL

# 0.1.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion secretsvaultplugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ configure<DetektExtension> {
}

group = "com.commencis.secretsvaultplugin"
version = "0.1.0"
version = "0.1.1"
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import org.gradle.api.provider.Property
* If not specified, the name of the module to which the plugin is applied will be used.
* @property version The version of CMake. If not specified, [DEFAULT_CMAKE_VERSION] will be used.
*/
internal interface CMakeExtension {
interface CMakeExtension {
val projectName: Property<String>
val version: Property<String>
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import java.io.File
* @property cmake The CMake related configurations for the SecretVault. This includes properties like
* the project name and version of CMake being used. Refer to [CMakeExtension] for detailed properties.
*/
internal interface SecretsVaultExtension {
interface SecretsVaultExtension {
val obfuscationKey: Property<String>
val secretsFile: Property<File>
val sourceSetSecretsMappingFile: Property<File>
Expand Down

0 comments on commit d8302f8

Please sign in to comment.