Index: core-module/pom.xml
===================================================================
diff -u -r5a4b956db8ab27e0079e3224f75e6b1f420bd785 -r2f5a8b891c782ac96a57e6234fa0b532fae29471
--- core-module/pom.xml (.../pom.xml) (revision 5a4b956db8ab27e0079e3224f75e6b1f420bd785)
+++ core-module/pom.xml (.../pom.xml) (revision 2f5a8b891c782ac96a57e6234fa0b532fae29471)
@@ -39,6 +39,13 @@
standard
1.1.2
+
+
+
+ org.scala-lang
+ scala-library
+ 2.12.6
+
@@ -104,6 +111,74 @@
+
+
+
+ org.codehaus.mojo
+ build-helper-maven-plugin
+ 3.0.0
+
+
+ add-source
+ generate-sources
+
+ add-source
+
+
+
+
+
+
+
+
+ add-test-source
+ generate-test-sources
+
+ add-test-source
+
+
+
+
+
+
+
+
+
+
+
+ net.alchim31.maven
+ scala-maven-plugin
+ 3.2.2
+
+
+
+
+ compile
+ testCompile
+
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-assembly-plugin
+ 2.4
+
+
+ jar-with-dependencies
+
+
+
+
+ package
+
+ single
+
+
+
+
\ No newline at end of file
Index: core-module/src/main/scala/egovframework/com/HelloScala.scala
===================================================================
diff -u
--- core-module/src/main/scala/egovframework/com/HelloScala.scala (revision 0)
+++ core-module/src/main/scala/egovframework/com/HelloScala.scala (revision 2f5a8b891c782ac96a57e6234fa0b532fae29471)
@@ -0,0 +1,5 @@
+package egovframework.com
+
+object HelloScala extends App {
+ println("Hello Scala")
+}
\ No newline at end of file