Skip to content

Commit

Permalink
Create zulu18_jdk.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
carlodandan authored Oct 28, 2022
1 parent e04c9eb commit 242ce31
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions scripts/zulu18_jdk.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env bash

# Initial Packages
sudo apt-get -yq install gnupg curl

# Setup Azul's Public Key
sudo apt-key adv \
--keyserver hkp://keyserver.ubuntu.com:80 \
--recv-keys 0xB1998361219BD9C9

# Download Azul's Repo
curl -O https://cdn.azul.com/zulu/bin/zulu-repo_1.0.0-3_all.deb

# Install Azul's Repo
sudo apt-get install ./zulu-repo_1.0.0-3_all.deb

# Post Update
sudo apt-get update

# Install Java-Zulu v18
sudo apt-get install zulu18-jdk

0 comments on commit 242ce31

Please sign in to comment.