Skip to content

Commit

Permalink
Setup minimal web application (JavaEE7)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Taylor committed Jun 12, 2015
1 parent e8ebcad commit d66c2da
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 0 deletions.
11 changes: 11 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>training.time-tracker</groupId>
<artifactId>time-tracker-core</artifactId>
<packaging>jar</packaging>
<version>0.1.0-SNAPSHOT</version>
<name>Time Tracker (Core)</name>


</project>
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>training.time-tracker</groupId>
<artifactId>time-tracker-parent</artifactId>
<packaging>pom</packaging>
<version>0.1.1-SNAPSHOT</version>
<name>Time Tracker (Parent)</name>
<description>
This is a simple Maven / Java web project.
</description>
<inceptionYear>2015</inceptionYear>
<url>http://maven.training/</url>

<modules>
<module>core</module>
<module>web</module>
</modules>
</project>
11 changes: 11 additions & 0 deletions web/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>training.time-tracker</groupId>
<artifactId>time-tracker-web</artifactId>
<packaging>war</packaging>
<version>0.1.0-SNAPSHOT</version>
<name>Time Tracker (Web)</name>


</project>
5 changes: 5 additions & 0 deletions web/src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
</web-app>

0 comments on commit d66c2da

Please sign in to comment.