added gradle script, set up dependencies
This commit is contained in:
parent
1c7ba5654a
commit
0808f6288e
9 changed files with 371 additions and 0 deletions
14
src/main/java/JobServ/App.java
Normal file
14
src/main/java/JobServ/App.java
Normal 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());
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue