Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#5: Make plugin extensions visible in Kotlin DSL #6

Merged
merged 2 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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