start a new project for an interactive cli
This commit is contained in:
23
cli-lanterna/build.gradle
Normal file
23
cli-lanterna/build.gradle
Normal file
@ -0,0 +1,23 @@
|
||||
buildscript {
|
||||
|
||||
repositories {
|
||||
jcenter()
|
||||
mavenLocal()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
|
||||
}
|
||||
}
|
||||
|
||||
apply plugin : 'application'
|
||||
mainClassName = 'com.muwire.clilanterna.CliLanterna'
|
||||
apply plugin : 'com.github.johnrengelman.shadow'
|
||||
|
||||
applicationDefaultJvmArgs = ['-Djava.util.logging.config.file=logging.properties']
|
||||
|
||||
dependencies {
|
||||
compile project(":core")
|
||||
compile 'com.googlecode.lanterna:lanterna:3.0.1'
|
||||
}
|
||||
|
@ -0,0 +1,7 @@
|
||||
package com.muwire.clilanterna
|
||||
|
||||
class CliLanterna {
|
||||
public static void main(String[] args) {
|
||||
println "hello world"
|
||||
}
|
||||
}
|
@ -4,5 +4,6 @@ include 'update-server'
|
||||
include 'core'
|
||||
include 'gui'
|
||||
include 'cli'
|
||||
include 'cli-lanterna'
|
||||
// include 'webui'
|
||||
// include 'plug'
|
||||
|
Reference in New Issue
Block a user