private void initializePaths() throws IOException { String path = SystemPropertyUtils.getProperty(PATH); if (path == null) { path = this.properties.getProperty(PATH); } if (path != null) { this.paths = parsePathsProperty( SystemPropertyUtils.resolvePlaceholders(path)); } log("Nested archive paths: " + this.paths); }
private void initializePaths() throws IOException { String path = SystemPropertyUtils.getProperty(PATH); if (path == null) { path = this.properties.getProperty(PATH); } if (path != null) { this.paths = parsePathsProperty( SystemPropertyUtils.resolvePlaceholders(path)); } this.logger.info("Nested archive paths: " + this.paths); }
protected File getHomeDirectory() { return new File(SystemPropertyUtils .resolvePlaceholders(System.getProperty(HOME, "${user.dir}"))); }