Skip to content

Commit

Permalink
closes #132
Browse files Browse the repository at this point in the history
  • Loading branch information
justinhrobbins committed Apr 7, 2014
1 parent 19125c8 commit 9628faf
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -826,6 +826,42 @@
<version>${h2.version}</version>
</dependency>
</dependencies>
<configuration>
<webapps>
<webapp>
<groupId>org.robbins.flashcards</groupId>
<artifactId>FlashCards_WebServices</artifactId>
<version>${project.version}</version>
<type>war</type>
<asWebapp>true</asWebapp>
<contextPath>/api</contextPath>
</webapp>
<webapp>
<groupId>org.robbins.flashcards</groupId>
<artifactId>FlashCards_GWT</artifactId>
<version>${project.version}</version>
<type>war</type>
<asWebapp>true</asWebapp>
<contextPath>/gwt</contextPath>
</webapp>
<webapp>
<groupId>org.robbins.flashcards</groupId>
<artifactId>FlashCards_Struts</artifactId>
<version>${project.version}</version>
<type>war</type>
<asWebapp>true</asWebapp>
<contextPath>/struts</contextPath>
</webapp>
<webapp>
<groupId>org.robbins.flashcards</groupId>
<artifactId>swagger_ui</artifactId>
<version>${project.version}</version>
<type>war</type>
<asWebapp>true</asWebapp>
<contextPath>/apidocs</contextPath>
</webapp>
</webapps>
</configuration>
</plugin>
<!-- Maven plugin for submitting Java code coverage reports
to Coveralls web service -->
Expand Down

0 comments on commit 9628faf

Please sign in to comment.