Guest User

pom.xml

a guest
Jan 18th, 2013
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.78 KB | None | 0 0
  1.     <plugin>
  2.                 <groupId>org.eclipse.jetty</groupId>
  3.                 <artifactId>jetty-maven-plugin</artifactId>
  4.                 <version>9.0.0.M3</version>
  5.                 <configuration>
  6.                     <reload>manual</reload>
  7.                     <jettyXml>src/main/webapp/WEB-INF/jetty-https.xml</jettyXml>
  8.                     <!-- Necesario para que cargue rápido la aplicación con Spring 3.1, y no busque ServletContainerInitializer
  9.                     http://jira.codehaus.org/browse/JETTY-1503
  10.                      -->
  11.                     <contextXml>src/main/webapp/WEB-INF/jetty-context.xml</contextXml>
  12.                     <!-- <loginServices>
  13.                         <loginService implementation="com.pixelware.firma.jetty.CertificateLoginService">
  14.                             <name>YourSecurityRealmHere</name>
  15.                         </loginService>
  16.                     </loginServices> -->
  17.                     <useProvidedScope>true</useProvidedScope>
  18.                 </configuration>
  19.             </plugin>
Advertisement
Add Comment
Please, Sign In to add comment