public static String getApplicationProperty()

in support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/support/MavenSupport.java [30:38]


    public static String getApplicationProperty(Class<?> clazz, String property){
        try (InputStream is = clazz.getResourceAsStream("/app.properties")) {
            Properties p = new Properties();
            p.load(is);
            return p.getProperty( property );
        } catch (Exception ignored) {
        }
        return "";
    }