Skip to content

Commit 4ae0bf1

Browse files
authored
Remove LogManager property in Quarkus stacks (#442)
fixes devfile/api#1612 it is causing stacktraces: ``` tools: Could not load Logmanager "org.jboss.logmanager.LogManager" tools: java.lang.ClassNotFoundException: org.jboss.logmanager.LogManager tools: at org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy.loadClass(SelfFirstStrategy.java:42) ``` Signed-off-by: Aurélien Pupier <[email protected]>
1 parent 8bb0569 commit 4ae0bf1

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

stacks/java-quarkus/1.3.0/devfile.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ commands:
5050
- id: dev-run
5151
exec:
5252
component: tools
53-
commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager'
53+
commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0'
5454
hotReloadCapable: true
5555
group:
5656
kind: run
@@ -59,7 +59,7 @@ commands:
5959
- id: dev-debug
6060
exec:
6161
component: tools
62-
commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager -Ddebug=${DEBUG_PORT}'
62+
commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Ddebug=${DEBUG_PORT}'
6363
hotReloadCapable: true
6464
group:
6565
kind: debug

stacks/java-quarkus/1.3.1/devfile.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ commands:
4949
- id: dev-run
5050
exec:
5151
component: tools
52-
commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager'
52+
commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0'
5353
hotReloadCapable: true
5454
group:
5555
kind: run
@@ -58,7 +58,7 @@ commands:
5858
- id: dev-debug
5959
exec:
6060
component: tools
61-
commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager -Ddebug=${DEBUG_PORT}'
61+
commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Ddebug=${DEBUG_PORT}'
6262
hotReloadCapable: true
6363
group:
6464
kind: debug

stacks/java-quarkus/1.4.0/devfile.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ commands:
5151
- id: dev-run
5252
exec:
5353
component: tools
54-
commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager'
54+
commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0'
5555
hotReloadCapable: true
5656
group:
5757
kind: run
@@ -60,7 +60,7 @@ commands:
6060
- id: dev-debug
6161
exec:
6262
component: tools
63-
commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager -Ddebug=${DEBUG_PORT}'
63+
commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Ddebug=${DEBUG_PORT}'
6464
hotReloadCapable: true
6565
group:
6666
kind: debug

stacks/java-quarkus/1.4.1/devfile.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ commands:
5050
- id: dev-run
5151
exec:
5252
component: tools
53-
commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager'
53+
commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0'
5454
hotReloadCapable: true
5555
group:
5656
kind: run
@@ -59,7 +59,7 @@ commands:
5959
- id: dev-debug
6060
exec:
6161
component: tools
62-
commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager -Ddebug=${DEBUG_PORT}'
62+
commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Ddebug=${DEBUG_PORT}'
6363
hotReloadCapable: true
6464
group:
6565
kind: debug

stacks/java-quarkus/1.5.0/devfile.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ commands:
5050
- id: dev-run
5151
exec:
5252
component: tools
53-
commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager'
53+
commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0'
5454
hotReloadCapable: true
5555
group:
5656
kind: run
@@ -59,7 +59,7 @@ commands:
5959
- id: dev-debug
6060
exec:
6161
component: tools
62-
commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager -Ddebug=${DEBUG_PORT}'
62+
commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Ddebug=${DEBUG_PORT}'
6363
hotReloadCapable: true
6464
group:
6565
kind: debug

0 commit comments

Comments
 (0)