mirror of https://github.com/zlatinb/muwire
skeleton of tracker project
parent
16d3a109ca
commit
7a7ebc9690
|
@ -2,7 +2,7 @@
|
|||
**/.settings
|
||||
**/build
|
||||
.gradle
|
||||
.project
|
||||
.classpath
|
||||
**/.project
|
||||
**/.classpath
|
||||
**/*.rej
|
||||
**/*.orig
|
||||
|
|
|
@ -5,5 +5,6 @@ include 'core'
|
|||
include 'gui'
|
||||
include 'cli'
|
||||
include 'cli-lanterna'
|
||||
include 'tracker'
|
||||
// include 'webui'
|
||||
// include 'plug'
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
buildscript {
|
||||
|
||||
repositories {
|
||||
jcenter()
|
||||
mavenLocal()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath 'com.github.jengelman.gradle.plugins:shadow:5.2.0'
|
||||
}
|
||||
}
|
||||
|
||||
apply plugin : 'application'
|
||||
application {
|
||||
mainClassName = 'com.muwire.tracker.Tracker'
|
||||
applicationDefaultJvmArgs = ['-Djava.util.logging.config.file=logging.properties','-Xmx256M']
|
||||
applicationName = 'mwtrackerd'
|
||||
}
|
||||
|
||||
apply plugin : 'com.github.johnrengelman.shadow'
|
||||
|
||||
|
||||
dependencies {
|
||||
compile project(":core")
|
||||
compile 'org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc:0.9.0'
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
package com.muwire.tracker
|
||||
|
||||
class Tracker {
|
||||
public static void main(String [] args) {
|
||||
println "hello from tracker"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue