Skip to content

Commit 8db2266

Browse files
committed
Espace properties in integration-tests/kubernetes
Fixes #33630
1 parent 8776b78 commit 8db2266

File tree

10 files changed

+10
-10
lines changed
  • integration-tests/kubernetes/maven-invoker-way/src/it
    • knative-jib-build-and-deploy
    • kubernetes-docker-build-and-deploy-deployment
    • kubernetes-docker-build-and-deploy-statefulset
    • kubernetes-jib-build-and-deploy
    • kubernetes-with-existing-selectorless-manifest
    • kubernetes-with-grpc-same-server
    • kubernetes-with-grpc
    • minikube-with-existing-manifest
    • openshift-docker-build-and-deploy
    • openshift-s2i-build-and-deploy

10 files changed

+10
-10
lines changed

integration-tests/kubernetes/maven-invoker-way/src/it/knative-jib-build-and-deploy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
</goals>
105105
<configuration>
106106
<systemPropertyVariables>
107-
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
107+
<native.image.path>\${project.build.directory}/\${project.build.finalName}-runner</native.image.path>
108108
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
109109
<maven.home>${maven.home}</maven.home>
110110
</systemPropertyVariables>

integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-docker-build-and-deploy-deployment/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
</goals>
105105
<configuration>
106106
<systemPropertyVariables>
107-
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
107+
<native.image.path>\${project.build.directory}/\${project.build.finalName}-runner</native.image.path>
108108
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
109109
<maven.home>${maven.home}</maven.home>
110110
</systemPropertyVariables>

integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-docker-build-and-deploy-statefulset/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
</goals>
105105
<configuration>
106106
<systemPropertyVariables>
107-
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
107+
<native.image.path>\${project.build.directory}/\${project.build.finalName}-runner</native.image.path>
108108
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
109109
<maven.home>${maven.home}</maven.home>
110110
</systemPropertyVariables>

integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-jib-build-and-deploy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
</goals>
105105
<configuration>
106106
<systemPropertyVariables>
107-
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
107+
<native.image.path>\${project.build.directory}/\${project.build.finalName}-runner</native.image.path>
108108
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
109109
<maven.home>${maven.home}</maven.home>
110110
</systemPropertyVariables>

integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-existing-selectorless-manifest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
</goals>
106106
<configuration>
107107
<systemPropertyVariables>
108-
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
108+
<native.image.path>\${project.build.directory}/\${project.build.finalName}-runner</native.image.path>
109109
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
110110
<maven.home>${maven.home}</maven.home>
111111
</systemPropertyVariables>

integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-grpc-same-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
</goals>
107107
<configuration>
108108
<systemPropertyVariables>
109-
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
109+
<native.image.path>\${project.build.directory}/\${project.build.finalName}-runner</native.image.path>
110110
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
111111
<maven.home>${maven.home}</maven.home>
112112
</systemPropertyVariables>

integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-grpc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
</goals>
103103
<configuration>
104104
<systemPropertyVariables>
105-
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
105+
<native.image.path>\${project.build.directory}/\${project.build.finalName}-runner</native.image.path>
106106
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
107107
<maven.home>${maven.home}</maven.home>
108108
</systemPropertyVariables>

integration-tests/kubernetes/maven-invoker-way/src/it/minikube-with-existing-manifest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
</goals>
109109
<configuration>
110110
<systemPropertyVariables>
111-
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
111+
<native.image.path>\${project.build.directory}/\${project.build.finalName}-runner</native.image.path>
112112
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
113113
<maven.home>${maven.home}</maven.home>
114114
</systemPropertyVariables>

integration-tests/kubernetes/maven-invoker-way/src/it/openshift-docker-build-and-deploy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
</goals>
105105
<configuration>
106106
<systemPropertyVariables>
107-
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
107+
<native.image.path>\${project.build.directory}/\${project.build.finalName}-runner</native.image.path>
108108
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
109109
<maven.home>${maven.home}</maven.home>
110110
</systemPropertyVariables>

integration-tests/kubernetes/maven-invoker-way/src/it/openshift-s2i-build-and-deploy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
</goals>
101101
<configuration>
102102
<systemPropertyVariables>
103-
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
103+
<native.image.path>\${project.build.directory}/\${project.build.finalName}-runner</native.image.path>
104104
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
105105
<maven.home>${maven.home}</maven.home>
106106
</systemPropertyVariables>

0 commit comments

Comments
 (0)