added gradle script, set up dependencies

This commit is contained in:
Aidan Hahn 2019-05-15 12:29:36 -07:00
parent 1c7ba5654a
commit 0808f6288e
No known key found for this signature in database
GPG key ID: 327711E983899316
9 changed files with 371 additions and 0 deletions

View file

@ -0,0 +1,14 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package JobServ;
public class App {
public String getGreeting() {
return "Hello world.";
}
public static void main(String[] args) {
System.out.println(new App().getGreeting());
}
}