Advertisement
Guest User

Untitled

a guest
Aug 30th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.64 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>org.example.application</groupId>
  8.     <artifactId>Application</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.     <packaging>jar</packaging>
  11.  
  12.     <dependencies>
  13.         <dependency>
  14.             <groupId>javax.servlet</groupId>
  15.             <artifactId>javax.servlet-api</artifactId>
  16.             <version>3.0.1</version>
  17.             <scope>provided</scope>
  18.         </dependency>
  19.     </dependencies>
  20.  
  21.     <build>
  22.         <finalName>SampleServlet</finalName>
  23.         <plugins>
  24.             <plugin>
  25.                 <groupId>org.apache.tomcat.maven</groupId>
  26.                 <artifactId>tomcat7-maven-plugin</artifactId>
  27.                 <version>2.2</version>
  28.                 <executions>
  29.                     <execution>
  30.                         <id>tomcat-run</id>
  31.                         <goals>
  32.                             <goal>exec-war-only</goal>
  33.                         </goals>
  34.                         <phase>package</phase>
  35.                         <configuration>
  36.                             <path>/Application</path>
  37.                             <enableNaming>false</enableNaming>
  38.                             <finalName>Application.jar</finalName>
  39.                         </configuration>
  40.                     </execution>
  41.                 </executions>
  42.             </plugin>
  43.         </plugins>
  44.     </build>
  45. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement