diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-06-07 16:21:46 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2020-06-07 16:21:46 -0700 |
commit | 081373cf07911939468401a3c1a128ee713052e3 (patch) | |
tree | a08787faf131cc5b238d94889fc2cc7b883b62d2 /build.gradle | |
parent | 71f894ef66fe8ce84eaa32c2771efb53cfd47de4 (diff) | |
download | trackermap-server-081373cf07911939468401a3c1a128ee713052e3.tar.gz trackermap-server-081373cf07911939468401a3c1a128ee713052e3.tar.bz2 trackermap-server-081373cf07911939468401a3c1a128ee713052e3.zip |
Improve debugging experience
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index 6aa6af8a7..5b7346e20 100644 --- a/build.gradle +++ b/build.gradle @@ -2,6 +2,7 @@ plugins { id "java" id "checkstyle" id "com.google.protobuf" version "0.8.11" + id 'application' } repositories { @@ -19,6 +20,11 @@ ext { sourceCompatibility = "1.8" compileJava.options.encoding = "UTF-8" +application { + mainModule = 'tracker-server.main' + mainClass = 'org.traccar.Main' +} + checkstyle { toolVersion = "8.26" configFile = "gradle/checkstyle.xml" as File |