These are the code samples for a tutorial from thecodinginterface.com titled High Level Intro to Java for Developers geared towards develpers who are already familiar with other Object Oriented languages.
The code samples are a collection of Gradle projects all complete with Gradle Wrapper scripts that are runnable as is. For example, to run the Hello World Gradle project do the following steps:
- clone repo
git clone https://github.com/amcquistan/java-for-devs.git
- change directories int the repo
cd java-for-devs
- change directories into modified_helloworld directory
cd modified_helloworld
- execute platform dependant Gradle wrapper script passing it the run task argument
windows
gradlew.bat run
mac / linux
./gradlew run