From c0113dd738328849f5fa87ccde6446b16b403735 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Mon, 23 Jul 2018 15:20:42 +0100 Subject: [PATCH] switch to groovy entry point --- core/src/main/groovy/com/muwire/core/Core.groovy | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 core/src/main/groovy/com/muwire/core/Core.groovy diff --git a/core/src/main/groovy/com/muwire/core/Core.groovy b/core/src/main/groovy/com/muwire/core/Core.groovy new file mode 100644 index 00000000..6043ba37 --- /dev/null +++ b/core/src/main/groovy/com/muwire/core/Core.groovy @@ -0,0 +1,9 @@ +package com.muwire.core + +class Core { + + static main(args) { + println "This doesn't do anything yet" + } + +}