Files
ATS_Esper/docs/setup.org

32 lines
431 B
Org Mode

* Install [[http://sdkman.io/][SDKman]]
Java Software Development Kit Manager
#+BEGIN_SRC shell
curl -s "https://get.sdkman.io" | bash
#+END_SRC
* Install [[https://gradle.org/][Gradle]]
Java build tool
#+BEGIN_SRC shell
sdk install gradle 4.6
#+END_SRC
* Init project
#+BEGIN_SRC shell
mkdir ATS_Esper && cd $!
gradle init --type java-application
#+END_SRC
* Hack hack hack
#+BEGIN_SRC shell
./gradlew build
#+END_SRC