Skip to content

Commit

Permalink
play with variables
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Aleksandrov <dmitry.aleksandrov@oracle.com>
  • Loading branch information
dalexandrov committed Sep 18, 2023
1 parent 0a3104e commit f5178b5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ public class GreetResource {
@Inject
public GreetResource(GreetingProvider greetingConfig) {
this.greetingProvider = greetingConfig;

System.out.println(">>>");
System.out.println(System.getenv());
}

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package io.helidon.examples.quickstart.mp;

import io.helidon.microprofile.cdi.Main;

public class Runner {

public static void main(String[] args) {

Main.main(args);

}
}

0 comments on commit f5178b5

Please sign in to comment.