0.1. Environment Setup
Development kit, version control system, integrated development environment, and project management for Java programming.
Last updated
Was this helpful?
Development kit, version control system, integrated development environment, and project management for Java programming.
Last updated
Was this helpful?
Install the latest version of the (JDK) on your local machine:
The required version: 17.x.x
(or higher)
Install Git using any of the following instructions:
Run the following commands on a terminal by replacing user.email
and user.name
with your email address and name:
Install the latest version of on your local machine:
The recommended version: 2022.3.x
(Ultimate Edition)
Apply for the with your school email address to use the ultimate version.
Name: dsa-java
Location: local_path/dsa-java
Check "Create Git repository"
Language: Java
Build system: Gradle
JDK: 17
Gradle DSL: Groovy
Uncheck "Add sample code"
Advanced Settings:
GroupId: edu.emory.cs
ArtifactId: dsa-java
Click [Settings - Build, Execution, Deployment]
on the menu:
Click [Build Tools - Gradle]
and set Gradle JVM
to 17.
Click [Compiler - Java Compiler]
and set Project bytecode version
to 17.
Click [File - Project Structure]
and select [Project Settings]
:
Click [Project Settings - Project]
and set SDK
to 17 and Project language level
to SDK default.
Click [Project Settings - Modules - Dependencies]
and set Module SDK
to 17.
Go to [Platform Settings - SDKs]
and select 17.
Lastly, check mavenCentral()
is configured as a repository in your build.gradle
:
Choose [Version Control - Github]
on the left pane.
Click [+]
and login with your GitHub ID and password.
Click [Git - GitHub - Share Project on Github]
and create a repository:
Make sure to check private.
Repository name: dsa-java
Remote: origin
Description: Data Structures and Algorithms in Java
Add all files and make the initial commit. Check if the repository is created under your GitHub account: https://github.com/your_id/dsa-java
.
Even if you already have an IDE that you are familiar with for Java programming, we strongly recommend you use IntelliJ because provides IDEs for many popular programming languages with similar interfaces, which makes it easier for you to adapt.
Launch IntelliJ and create a project by clicking the [New Project]
button at the top:
Open and make sure distributionUrl
indicates the latest version of Gradle:
Open and make sure sourceCompatibility
and targetCompatibility
are set to java version 17 (add the following configurations if they do not exist already):
There is another popular build tool called . However, we will use Gradle for this course because it is faster and simpler to build a Java-based project.
To integrate the project with your repository, click [Settings]
:
If you use two-factor authentication, log in with your .
Create under the project and add the following contents: