This repository has been archived by the owner on Jan 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'tobias-java-9-support'
- Loading branch information
Showing
3 changed files
with
26 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#https://github.com/boot-clj/boot | ||
#Sun Nov 15 17:35:18 EST 2015 | ||
BOOT_VERSION=2.5.2 | ||
BOOT_VERSION=2.7.2 | ||
BOOT_CLOJURE_VERSION=1.7.0 | ||
BOOT_CLOJURE_NAME=org.clojure/clojure | ||
BOOT_EMIT_TARGET=no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package boot.bin; | ||
|
||
import java.net.URL; | ||
import java.net.URLClassLoader; | ||
|
||
// Exists solely so we have a type to seal to prevent user code from | ||
// altering our top-level CL. | ||
public class ParentClassLoader extends URLClassLoader { | ||
public ParentClassLoader(ClassLoader parent) { | ||
super(new URL[0], parent); } | ||
|
||
public void addURL(URL url) { | ||
super.addURL(url); }} |