(String path)
| 344 | } |
| 345 | |
| 346 | public void addJar(String path) throws MalformedURLException { |
| 347 | if (path != null) { |
| 348 | URL resource = (new File(path)).toURI().toURL(); |
| 349 | addJar(resource, path); |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | public void addJar(URL resource, String originalPath) throws MalformedURLException{ |
| 354 | if (resource != null && !extraJars.contains(resource)) { |