commit 61aa0e5697a78883c4ab3cc863cf288d24aec3ae Author: Jan Philipp Timme Date: Tue May 24 13:47:27 2016 +0200 Initial import. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..225021c --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# Eclipse files +.classpath +.project +.settings + +# Maven products +/bin +/target diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..f25fe07 --- /dev/null +++ b/pom.xml @@ -0,0 +1,120 @@ + + 4.0.0 + lu.jpt.csparqltest + CSPARQL-Test + 0.1 + jar + csparql-test + + + + streamreasoning_repository + streamreasoning repository + http://streamreasoning.org/maven/ + default + + + + UTF-8 + + + + eu.larkc.csparql + csparql-core + 0.9.6 + + + it.polimi.deib + rsp-services-api + 0.4.5 + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.apache.maven.plugins + maven-dependency-plugin + [2.0,) + + copy-dependencies + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + 1.8 + 1.8 + + + + maven-jar-plugin + + + + true + lib/ + lu.jpt.csparqltest.Main + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 2.1 + + + copy-dependencies + package + + copy-dependencies + + + ${project.build.directory}/lib + false + false + true + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + + + + diff --git a/src/lu/jpt/csparqltest/Main.java b/src/lu/jpt/csparqltest/Main.java new file mode 100644 index 0000000..6b9d5cb --- /dev/null +++ b/src/lu/jpt/csparqltest/Main.java @@ -0,0 +1,9 @@ +package lu.jpt.csparqltest; + +public class Main { + + public static void main(String[] args) { + System.out.println("Hello"); + } + +}