Skip to content

Commit

Permalink
Fix Gradle plugin tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mhalbritter committed Mar 4, 2024
1 parent 10a57ad commit a8d7ef1
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 40 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ dependencies {

task listLayers(type: JavaExec) {
classpath = bootJar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "list"
systemProperties = [ "jarmode": "tools" ]
args "list-layers"
}

task extractLayers(type: JavaExec) {
classpath = bootJar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "extract"
systemProperties = [ "jarmode": "tools" ]
args "extract", "--layers", "--launcher"
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ dependencies {

task listLayers(type: JavaExec) {
classpath = bootJar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "list"
systemProperties = [ "jarmode": "tools" ]
args "list-layers"
}

task extractLayers(type: JavaExec) {
classpath = bootJar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "extract"
systemProperties = [ "jarmode": "tools" ]
args "extract", "--layers", "--launcher"
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ dependencies {

task listLayers(type: JavaExec) {
classpath = bootJar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "list"
systemProperties = [ "jarmode": "tools" ]
args "list-layers"
}

task extractLayers(type: JavaExec) {
classpath = bootJar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "extract"
systemProperties = [ "jarmode": "tools" ]
args "extract", "--layers", "--launcher"
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ dependencies {

task listLayers(type: JavaExec) {
classpath = bootJar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "list"
systemProperties = [ "jarmode": "tools" ]
args "list-layers"
}

task extractLayers(type: JavaExec) {
classpath = bootJar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "extract"
systemProperties = [ "jarmode": "tools" ]
args "extract", "--layers", "--launcher"
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ dependencies {

task listLayers(type: JavaExec) {
classpath = bootJar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "list"
systemProperties = [ "jarmode": "tools" ]
args "list-layers"
}

task extractLayers(type: JavaExec) {
classpath = bootJar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "extract"
systemProperties = [ "jarmode": "tools" ]
args "extract", "--layers", "--launcher"
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ dependencies {

task listLayers(type: JavaExec) {
classpath = bootWar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "list"
systemProperties = [ "jarmode": "tools" ]
args "list-layers"
}

task extractLayers(type: JavaExec) {
classpath = bootWar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "extract"
systemProperties = [ "jarmode": "tools" ]
args "extract", "--layers", "--launcher"
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ dependencies {

task listLayers(type: JavaExec) {
classpath = bootWar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "list"
systemProperties = [ "jarmode": "tools" ]
args "list-layers"
}

task extractLayers(type: JavaExec) {
classpath = bootWar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "extract"
systemProperties = [ "jarmode": "tools" ]
args "extract", "--layers", "--launcher"
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ dependencies {

task listLayers(type: JavaExec) {
classpath = bootWar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "list"
systemProperties = [ "jarmode": "tools" ]
args "list-layers"
}

task extractLayers(type: JavaExec) {
classpath = bootWar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "extract"
systemProperties = [ "jarmode": "tools" ]
args "extract", "--layers", "--launcher"
}
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ dependencies {

task listLayers(type: JavaExec) {
classpath = bootWar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "list"
systemProperties = [ "jarmode": "tools" ]
args "list-layers"
}

task extractLayers(type: JavaExec) {
classpath = bootWar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "extract"
systemProperties = [ "jarmode": "tools" ]
args "extract", "--layers", "--launcher"
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ dependencies {

task listLayers(type: JavaExec) {
classpath = bootWar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "list"
systemProperties = [ "jarmode": "tools" ]
args "list-layers"
}

task extractLayers(type: JavaExec) {
classpath = bootWar.outputs.files
systemProperties = [ "jarmode": "layertools" ]
args "extract"
systemProperties = [ "jarmode": "tools" ]
args "extract", "--layers", "--launcher"
}

0 comments on commit a8d7ef1

Please sign in to comment.