FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node-java/compile-java8-code.sh at master · jkstrick/node-java · GitHub
jkstrick
/
node-java
Public
forked from
joeferner/node-java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
node-java
/
compile-java8-code.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
14 lines (11 loc) · 529 Bytes
Breadcrumbs
node-java
/
compile-java8-code.sh
Copy path
File metadata and controls
executable file
·
14 lines (11 loc) · 529 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!
/bin/bash -e
#
This script must be run on a Mac due to its reliance on /usr/libexec/java_home
#
to find a JDK 1.8 installation. Note that this script will work correctly on
#
a mac with JDK 1.8 installed, even if JAVA_HOME currently points to a 1.7
#
or earlier JDK.
#
This script is run manually by maintainers of this project, who add the
#
the generated .class files to source control.
JAVA_VERSION=1.8
JDK8_HOME=
$(
/usr/libexec/java_home -v
${JAVA_VERSION}
)
cd
test8
${JDK8_HOME}
/bin/javac -source
${JAVA_VERSION}
*
.java
Back
|
FazBrowse Home
|
New Git URL