From d66c2da80775f8b5b07c1b9669aff2f272fc87ca Mon Sep 17 00:00:00 2001 From: Jason Taylor Date: Fri, 12 Jun 2015 02:13:32 -0400 Subject: [PATCH] Setup minimal web application (JavaEE7) --- core/pom.xml | 11 +++++++++++ pom.xml | 19 +++++++++++++++++++ web/pom.xml | 11 +++++++++++ web/src/main/webapp/WEB-INF/web.xml | 5 +++++ 4 files changed, 46 insertions(+) create mode 100644 core/pom.xml create mode 100644 pom.xml create mode 100644 web/pom.xml create mode 100644 web/src/main/webapp/WEB-INF/web.xml diff --git a/core/pom.xml b/core/pom.xml new file mode 100644 index 00000000..34fa8685 --- /dev/null +++ b/core/pom.xml @@ -0,0 +1,11 @@ + + 4.0.0 + training.time-tracker + time-tracker-core + jar + 0.1.0-SNAPSHOT + Time Tracker (Core) + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 00000000..1d593f0f --- /dev/null +++ b/pom.xml @@ -0,0 +1,19 @@ + + 4.0.0 + training.time-tracker + time-tracker-parent + pom + 0.1.1-SNAPSHOT + Time Tracker (Parent) + + This is a simple Maven / Java web project. + + 2015 + http://maven.training/ + + + core + web + + \ No newline at end of file diff --git a/web/pom.xml b/web/pom.xml new file mode 100644 index 00000000..30a7f28b --- /dev/null +++ b/web/pom.xml @@ -0,0 +1,11 @@ + + 4.0.0 + training.time-tracker + time-tracker-web + war + 0.1.0-SNAPSHOT + Time Tracker (Web) + + + \ No newline at end of file diff --git a/web/src/main/webapp/WEB-INF/web.xml b/web/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 00000000..89996611 --- /dev/null +++ b/web/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,5 @@ + + \ No newline at end of file