Skip to content

Commit

Permalink
change create value task
Browse files Browse the repository at this point in the history
  • Loading branch information
DatL4g committed Aug 14, 2024
1 parent 8cc5591 commit 72a47eb
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,15 @@ open class CreateSekretValueTask : DefaultTask() {
open val enabled: Property<Boolean> = project.objects.property(Boolean::class.java)

@get:InputFile
val propertiesFile: RegularFileProperty = project.objects.fileProperty()
@get:OutputFile
open val propertiesFile: RegularFileProperty = project.objects.fileProperty()

@get:Input
open val propertyName: Property<String> = project.objects.property(String::class.java)

@get:Input
open val propertyValue: Property<String> = project.objects.property(String::class.java)

@get:OutputFile
val outputFile: RegularFileProperty = propertiesFile

init {
group = "sekret"
}
Expand Down

0 comments on commit 72a47eb

Please sign in to comment.