skeleton of tracker project

This commit is contained in:
Zlatin Balevsky
2020-04-13 19:43:48 +01:00
parent 16d3a109ca
commit 7a7ebc9690
4 changed files with 37 additions and 2 deletions

4
.gitignore vendored
View File

@ -2,7 +2,7 @@
**/.settings
**/build
.gradle
.project
.classpath
**/.project
**/.classpath
**/*.rej
**/*.orig

View File

@ -5,5 +5,6 @@ include 'core'
include 'gui'
include 'cli'
include 'cli-lanterna'
include 'tracker'
// include 'webui'
// include 'plug'

27
tracker/build.gradle Normal file
View File

@ -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'
}

View File

@ -0,0 +1,7 @@
package com.muwire.tracker
class Tracker {
public static void main(String [] args) {
println "hello from tracker"
}
}