Add a project for a cli application and update dependencies

This commit is contained in:
Alexander Bakker 2017-12-11 13:29:56 +01:00
parent 87f7ebed74
commit 7d5bd8f812
8 changed files with 35 additions and 15 deletions

6
cli/build.gradle Normal file
View file

@ -0,0 +1,6 @@
apply plugin: 'java-library'
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
compile "com.beust:jcommander:1.71"
}

View file

@ -0,0 +1,7 @@
package me.impy.aegis.cli;
public class Main {
public static void main(String[] args) {
}
}