Move SLC Init activator to SLC Runtime
[gpl/argeo-slc.git] / org.argeo.slc.runtime / src / org / argeo / slc / cms / test / CmsSmokeTest.java
diff --git a/org.argeo.slc.runtime/src/org/argeo/slc/cms/test/CmsSmokeTest.java b/org.argeo.slc.runtime/src/org/argeo/slc/cms/test/CmsSmokeTest.java
new file mode 100644 (file)
index 0000000..10b088c
--- /dev/null
@@ -0,0 +1,20 @@
+package org.argeo.slc.cms.test;
+
+import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+
+public class CmsSmokeTest {
+
+       public static void main(String[] args) throws IOException {
+               Path instanceData;
+               if (args.length > 0) {
+                       instanceData = Paths.get(args[0]);
+               } else {
+                       instanceData = Files.createTempDirectory("cms-test");
+               }
+
+       }
+
+}