File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/main/kotlin/com/cognifide/gradle/aem Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66}
77
88group ' com.cognifide.gradle'
9- version ' 2.0.6-SNAPSHOT '
9+ version ' 2.0.6'
1010description = ' Gradle AEM Plugin'
1111defaultTasks = [' clean' , ' publishToMavenLocal' ]
1212
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ open class AemConfig(project: Project) : Serializable {
205205 * Global options which are being applied to any Vault related command like 'aemVault' or 'aemCheckout'.
206206 */
207207 @Input
208- var vaultGlobalOptions: String = " --credentials \$ { instance.credentials}"
208+ var vaultGlobalOptions: String = " --credentials {{ instance.credentials} }"
209209
210210 /* *
211211 * Specify characters to be used as line endings when cleaning up checked out JCR content.
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class VltCommand(val project: Project) {
3333 logger.info(" JCR content directory to be checked out does not exist: ${contentDir.absolutePath} " )
3434 }
3535
36- raw(" checkout --force --filter \$ { filter} \$ { instance.httpUrl}/crx/server/crx.default" )
36+ raw(" checkout --force --filter {{ filter}} {{ instance.httpUrl} }/crx/server/crx.default" )
3737 }
3838
3939 fun raw (command : String ) {
You can’t perform that action at this time.
0 commit comments