From a6524d8b38edbf0ae1449c89c17dc2da581cfdd3 Mon Sep 17 00:00:00 2001 From: sharwell Date: Wed, 8 Feb 2012 15:07:06 -0600 Subject: [PATCH] Add pom.xml to support maven builds --- .gitignore | 3 ++ gunit/pom.xml | 80 ++++++++++++++++++++++++++++++++++++++++ runtime/Java/pom.xml | 50 +++++++++++++++++++++++++ tool/pom.xml | 87 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 220 insertions(+) create mode 100644 .gitignore create mode 100644 gunit/pom.xml create mode 100644 runtime/Java/pom.xml create mode 100644 tool/pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..e186fb288 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/tool/target/ +/runtime/Java/target/ +/gunit/target/ \ No newline at end of file diff --git a/gunit/pom.xml b/gunit/pom.xml new file mode 100644 index 000000000..ebd21cb79 --- /dev/null +++ b/gunit/pom.xml @@ -0,0 +1,80 @@ + + + 4.0.0 + + org.antlr + antlr4-gunit + 4.0-SNAPSHOT + jar + + antlr4-gunit + http://www.antlr.org + + + UTF-8 + + + + + junit + junit + 4.10 + test + + + org.antlr + antlr4-runtime + 4.0-SNAPSHOT + + + org.antlr + antlr-runtime + 3.4.1-SNAPSHOT + + + org.antlr + ST4 + 4.0.4 + + + + + + src + + + resources + + + + + + org.antlr + antlr3-maven-plugin + 3.4 + + src + true + + + + + antlr + + + + + + + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + + + + + + diff --git a/runtime/Java/pom.xml b/runtime/Java/pom.xml new file mode 100644 index 000000000..d0e95cf41 --- /dev/null +++ b/runtime/Java/pom.xml @@ -0,0 +1,50 @@ + + + 4.0.0 + + org.antlr + antlr4-runtime + 4.0-SNAPSHOT + jar + + antlr4-runtime + http://www.antlr.org + + + UTF-8 + + + + + org.antlr + ST4 + 4.0.4-SNAPSHOT + compile + + + org.abego + treelayout.core + 1.0 + system + ${project.basedir}/lib/org.abego.treelayout.core.jar + + + + + + src + + + + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + + + + + + diff --git a/tool/pom.xml b/tool/pom.xml new file mode 100644 index 000000000..2fb24e25e --- /dev/null +++ b/tool/pom.xml @@ -0,0 +1,87 @@ + + + 4.0.0 + + org.antlr + antlr4 + 4.0-SNAPSHOT + jar + + antlr4 + http://www.antlr.org + + + UTF-8 + + + + + junit + junit + 4.10 + test + + + org.antlr + antlr4-runtime + ${project.version} + + + org.antlr + antlr-runtime + 3.4.1-SNAPSHOT + + + org.antlr + ST4 + 4.0.4 + + + org.antlr + antlr4-gunit + ${project.version} + + + + + + src + + + resources + + + + test + + + + org.antlr + antlr3-maven-plugin + 3.4 + + src + true + + + + + antlr + + + + + + + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + + + + + +