Skip to content

Instantly share code, notes, and snippets.

@sdpatil
Created February 9, 2014 19:27
Show Gist options
  • Save sdpatil/8904640 to your computer and use it in GitHub Desktop.
Save sdpatil/8904640 to your computer and use it in GitHub Desktop.
Maven Settings.xml with tomcat server declration
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<pluginGroups>
</pluginGroups>
<proxies>
</proxies>
<servers>
<server>
<id>TomcatServer</id>
<username>tomcat</username>
<password>tomcat</password>
</server>
</servers>
<mirrors>
</mirrors>
<profiles>
</profiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment