Skip to content

Code refactoring is the process of restructuring existing computer code without changing its external behavior. Learn how and why in this session.

Notifications You must be signed in to change notification settings

kariyaki/clean-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Clean Code & Refactoring

Requirements

Please try to create and build a hello world project in IntelliJ using Maven before the workshop! The less time spent fixing Java paths and SDK versions the better.

How to run code with Maven

Ensure that:

  • Maven is on your PATH (typing mvn --version in a terminal should not produce an error)
  • If Maven is not on your PATH, you have to add it.
    • Windows: Control Panel -> Search "environment variables" -> "Edit environment variables for your account" -> find the PATH variable -> In the Value field add the directory where your mvn.exe is located

With Maven ready, you can either run it from a terminal:

  • Open a terminal and navigate to where the project's POM.xml file is located
  • mvn compile
  • mvn test

Or you can run it from within IntelliJ:

  • In IntelliJ, open the folder where the POM.xml is located as a project
  • Run from the Run menu

About

Code refactoring is the process of restructuring existing computer code without changing its external behavior. Learn how and why in this session.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages