Merge remote-tracking branch 'upstream/master' into mobile

This commit is contained in:
Shivam Dave 2015-09-02 15:48:44 -07:00
commit 678d11832c
2 changed files with 16 additions and 1 deletions

6
.gitignore vendored
View File

@ -3,9 +3,13 @@
*.gzip
*.tgz
*.DS_Store
*.idea
*.sass-cache
# Intellij project configuration files
*.idea
*.iml
# External dependencies
# Build output

11
pom.xml
View File

@ -176,6 +176,17 @@
</executions>
</plugin>
<!-- To start this WAR in an embedded Tomcat Servlet Container -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<httpPort>8080</httpPort>
<path>/mct</path>
</configuration>
</plugin>
</plugins>
</build>