document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3.   <modelVersion>4.0.0</modelVersion>
  4.   <groupId>net.ejemplos</groupId>
  5.   <artifactId>ejemplo</artifactId>
  6.   <packaging>war</packaging>
  7.   <version>1.0-SNAPSHOT</version>
  8.   <name>ejemplo</name>
  9.   <url>http://maven.apache.org</url>
  10.   <dependencies>
  11.     <dependency>
  12.       <groupId>junit</groupId>
  13.       <artifactId>junit</artifactId>
  14.       <version>3.8.1</version>
  15.       <scope>test</scope>
  16.     </dependency>
  17.   </dependencies>
  18.   <build>
  19.     <finalName>ejemplo</finalName>
  20.     <plugins>
  21.       <plugin>
  22.         <groupId>org.mortbay.jetty</groupId>
  23.         <artifactId>maven-jetty-plugin</artifactId>
  24.         <version>6.1.10</version>
  25.         <configuration>
  26.           <scanIntervalSeconds>10</scanIntervalSeconds>
  27.         </configuration>
  28.       </plugin>
  29.     </plugins>
  30.   </build>
  31. </project>
');