CLI project
This commit is contained in:
3
cli/build.gradle
Normal file
3
cli/build.gradle
Normal file
@ -0,0 +1,3 @@
|
||||
apply plugin : 'application'
|
||||
|
||||
mainClassName = 'com.muwire.cli.Cli'
|
8
cli/src/main/groovy/com/muwire/cli/Cli.groovy
Normal file
8
cli/src/main/groovy/com/muwire/cli/Cli.groovy
Normal file
@ -0,0 +1,8 @@
|
||||
package com.muwire.cli
|
||||
|
||||
class Cli {
|
||||
|
||||
public static void main(String[] args) {
|
||||
println "MuWire command-line interface"
|
||||
}
|
||||
}
|
@ -3,3 +3,4 @@ include 'host-cache'
|
||||
include 'update-server'
|
||||
include 'core'
|
||||
include 'gui'
|
||||
include 'cli'
|
||||
|
Reference in New Issue
Block a user