Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.30 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <project xmlns="http://maven.apache.org/POM/4.0.0" 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>de.h-brs</groupId>
  8.   <artifactId>Parkhaus</artifactId>
  9.   <version>1.0-SNAPSHOT</version>
  10.   <packaging>war</packaging>
  11.  
  12.   <name>Parkhaus Maven Webapp</name>
  13.   <!-- FIXME change it to the project's website -->
  14.  <url>http://www.example.com</url>
  15.  
  16.  <properties>
  17.    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18.    <maven.compiler.source>1.7</maven.compiler.source>
  19.    <maven.compiler.target>1.7</maven.compiler.target>
  20.  </properties>
  21.  
  22.  <dependencies>
  23.    <!-- https://mvnrepository.com/artifact/javax.servlet/servlet-api -->
  24.    <dependency>
  25.      <groupId>javax.servlet</groupId>
  26.      <artifactId>servlet-api</artifactId>
  27.      <version>2.5</version>
  28.      <scope>provided</scope>
  29.    </dependency>
  30.  
  31.  </dependencies>
  32.  
  33.  <build>
  34.    <finalName>Parkhaus</finalName>
  35.    <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  36.      <plugins>
  37.        <plugin>
  38.          <artifactId>maven-clean-plugin</artifactId>
  39.          <version>3.1.0</version>
  40.        </plugin>
  41.        <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  42.        <plugin>
  43.          <artifactId>maven-resources-plugin</artifactId>
  44.          <version>3.0.2</version>
  45.        </plugin>
  46.        <plugin>
  47.          <artifactId>maven-compiler-plugin</artifactId>
  48.          <version>3.8.0</version>
  49.        </plugin>
  50.        <plugin>
  51.          <artifactId>maven-surefire-plugin</artifactId>
  52.          <version>2.22.1</version>
  53.        </plugin>
  54.        <plugin>
  55.          <artifactId>maven-war-plugin</artifactId>
  56.          <version>3.2.2</version>
  57.        </plugin>
  58.        <plugin>
  59.          <artifactId>maven-install-plugin</artifactId>
  60.          <version>2.5.2</version>
  61.        </plugin>
  62.        <plugin>
  63.          <artifactId>maven-deploy-plugin</artifactId>
  64.          <version>2.8.2</version>
  65.        </plugin>
  66.      </plugins>
  67.    </pluginManagement>
  68.  </build>
  69. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement