Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.04 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  3.         xmlns="http://maven.apache.org/POM/4.0.0"
  4.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5.     <packaging>war</packaging>
  6.  
  7.     <modelVersion>4.0.0</modelVersion>
  8.  
  9.     <parent>
  10.         <groupId>com.webapplication</groupId>
  11.         <artifactId>itsuna</artifactId>
  12.         <version>1.0-SNAPSHOT</version>
  13.     </parent>
  14.     <artifactId>base</artifactId>
  15.     <name>base</name>
  16.  
  17.     <dependencies>
  18.         <dependency>
  19.             <groupId>junit</groupId>
  20.             <artifactId>junit</artifactId>
  21.             <version>4.12</version>
  22.             <scope>test</scope>
  23.         </dependency>
  24.         <dependency>
  25.             <groupId>javax.enterprise</groupId>
  26.             <artifactId>cdi-api</artifactId>
  27.             <version>2.0</version>
  28.             <scope>provided</scope>
  29.         </dependency>
  30.         <dependency>
  31.             <groupId>org.springframework.boot</groupId>
  32.             <artifactId>spring-boot-starter-web</artifactId>
  33.         </dependency>
  34.     </dependencies>
  35.  
  36.     <build>
  37.         <pluginManagement>
  38.             <plugins>
  39.                 <plugin>
  40.                     <groupId>org.apache.maven.plugins</groupId>
  41.                     <artifactId>maven-war-plugin</artifactId>
  42.                     <version>3.1.0</version>
  43.                     <configuration>
  44.                         <archive>
  45.                             <manifest>
  46.                                 <mainClass>com.webapplication.BootApp</mainClass>
  47.                             </manifest>
  48.                         </archive>
  49.                     </configuration>
  50.                 </plugin>
  51.                 <plugin>
  52.                     <groupId>org.springframework.boot</groupId>
  53.                     <artifactId>spring-boot-maven-plugin</artifactId>
  54.                     <version>${spring-boot.version}</version>
  55.                 </plugin>
  56.             </plugins>
  57.         </pluginManagement>
  58.     </build>
  59. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement