You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ABOUT.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,6 @@ GitHub for example has over 1.5 million Java projects.
12
12
It's also worth mentioning that Java has the second largest community in [StackOverflow](https://stackoverflow.com/questions/tagged/java)!
13
13
This is important because the larger a programming language community is, the more support you'd be likely to get.
14
14
15
-
Java also has a powerful and well-designed set of built-in [APIs - Application Programming Interfaces](https://docs.oracle.com/javase/8/docs/api/), which can be used for various activities like Database connection, networking, I/O, XML parsing, utilities, and much more.
15
+
Java also has a powerful and well-designed set of built-in [APIs - Application Programming Interfaces](https://docs.oracle.com/en/java/javase/11/docs/api/index.html), which can be used for various activities like Database connection, networking, I/O, XML parsing, utilities, and much more.
16
16
17
17
From laptops to datacenters, game consoles to scientific supercomputers, cell phones to the Internet, [Java is everywhere](https://en.wikipedia.org/wiki/Write_once,_run_anywhere)!
Copy file name to clipboardExpand all lines: docs/INSTALLATION.md
+27-28Lines changed: 27 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Open an administrative command prompt. (If you need assistance opening an admin
31
31
2. Install the JDK:
32
32
33
33
```batchfile
34
-
C:\Windows\system32> choco install jdk8
34
+
C:\Windows\system32> choco install openjdk11
35
35
...
36
36
C:\Windows\system32> refreshenv
37
37
...
@@ -66,13 +66,13 @@ Below are instructions for install using the most common method - using Homebrew
66
66
2. Tap the [Homebrew Cask](https://caskroom.github.io/) — this allows us to install pre-built binaries like the JDK.
67
67
68
68
```
69
-
$ brew tap caskroom/cask
69
+
$ brew tap adoptopenjdk/openjdk
70
70
```
71
71
72
72
3. Install the JDK:
73
73
74
74
```
75
-
$ brew cask install java
75
+
$ brew cask install homebrew/cask-versions/java11
76
76
```
77
77
78
78
4. Install Gradle:
@@ -96,19 +96,18 @@ Below are instructions for install using the package manager of your distro. If
96
96
97
97
## Debian
98
98
99
-
If you are using Debian or its derivatives (like Ubuntu or Linux Mint), use APT:
99
+
If you are using Debian or its derivatives (like Ubuntu), use APT:
100
100
101
-
*(verified on: Linux Mint 18, Ubuntu 14)*
101
+
*(verified on: Ubuntu 14, 16 and 18)*
102
102
103
103
1. Install the JDK:
104
104
105
105
```sh
106
106
$ sudo apt-get update
107
-
$ sudo apt-get install python-software-properties
108
-
$ sudo add-apt-repository ppa:webupd8team/java
107
+
$ sudo apt-get install software-properties-common
108
+
$ sudo add-apt-repository ppa:openjdk-r/ppa
109
109
$ sudo apt-get update
110
-
$ sudo apt-get install oracle-java8-installer
111
-
$ sudo apt install oracle-java8-set-default
110
+
$ sudo apt-get install openjdk-11-jdk
112
111
```
113
112
114
113
2. Install Gradle:
@@ -125,24 +124,24 @@ To get started, see "[Running the Tests](http://exercism.io/languages/java/tests
125
124
126
125
----
127
126
128
-
## Fedora
127
+
## Other Linux distributions
129
128
130
-
If you are using Fedora or its derivatives, use DNF:
131
-
132
-
*(verified on: Fedora 24)*
133
-
134
-
1. Install the JDK:
135
-
136
-
```sh
137
-
$ sudo dnf install java-1.8.0-openjdk-devel
138
-
```
139
-
140
-
2. Install Gradle:
141
-
142
-
```sh
143
-
$ sudo dnf install gradle
144
-
```
129
+
There are a lot of ways to install Jdk 11, but one of the easiest ways is to use SDKMAN, which lets you install
130
+
both OpenJdk11 and the latest Gradle with ease. Use the following steps:
145
131
132
+
1. Install SDKMAN:
133
+
```sh
134
+
$ curl -s "https://get.sdkman.io" | bash
135
+
```
136
+
(if that doesn't work, take a look at the instructions found here: https://sdkman.io/install )
137
+
1. Install openjdk11:
138
+
```
139
+
$ sdk install java 11.0.2-open
140
+
```
141
+
1. Install Gradle:
142
+
```sh
143
+
$ sdk install gradle
144
+
```
146
145
147
146
You now are ready to get started with the Java track of Exercism!
148
147
@@ -163,7 +162,7 @@ To get started, see "[Running the Tests](http://exercism.io/languages/java/tests
163
162
*NOTE: these instructions are intended for experienced Windows users. If you don't already know how to set environment variables or feel comfortable managing the directory structure, we highly recommend you use the Chocolatey-based install, [above](#windows).*
164
163
165
164
1. Install the JDK:
166
-
1. Download "**Java Platform (JDK)**" from [Oracle OTN](http://www.oracle.com/technetwork/java/javase/downloads/index.html).
165
+
1. Download "**OpenJDK 11 (LTS)**" from [AdoptOpenJDK](https://adoptopenjdk.net/releases.html?variant=openjdk11#x64_win) (choose **"Install JDK"**).
167
166
- Run the installer, using all the defaults.
168
167
2. Install Gradle:
169
168
- Download "**Binary only distribution**" from the [Gradle download page](https://gradle.org/gradle-download/).
@@ -183,7 +182,7 @@ To get started, see "[Running the Tests](http://exercism.io/languages/java/tests
183
182
*NOTE: these instructions are intended for experienced macOS users. Unless you specifically do not want to use a package manager, we highly recommend using the Homebrew-based installation instructions, [above](#macos).*
184
183
185
184
1. Install the JDK:
186
-
1. Download "**Java Platform (JDK)**" from [Oracle OTN](http://www.oracle.com/technetwork/java/javase/downloads/index.html).
185
+
1. Download "**OpenJDK 11 (LTS)**" from [AdoptOpenJDK](https://adoptopenjdk.net/releases.html?variant=openjdk11#x64_mac) (choose **"Install JDK"**).
187
186
2. Run the installer, using all the defaults.
188
187
2. Install Gradle:
189
188
1. Download "**Binary only distribution**" from the [Gradle download page](https://gradle.org/gradle-download/).
@@ -217,7 +216,7 @@ To get started, see "[Running the Tests](http://exercism.io/languages/java/tests
217
216
*NOTE: these instructions are intended for experienced Linux users. Unless you specifically do not want to use a package manager, we highly recommend using the the installation instructions, [above](#linux).*
218
217
219
218
1. Install the JDK:
220
-
1. Download "**Java Platform (JDK)**" from [Oracle OTN](http://www.oracle.com/technetwork/java/javase/downloads/index.html).
219
+
1. Choose your distribution and download "**OpenJDK 11 (LTS)**" from [AdoptOpenJDK](https://adoptopenjdk.net/releases.html?variant=openjdk11) (choose **"Install JDK"**).
221
220
2. Run the installer, using all the defaults.
222
221
2. Install Gradle:
223
222
1. Download "**Binary only distribution**" from the [Gradle download page](https://gradle.org/gradle-download/).
0 commit comments