Advertisement
Guest User

pom.xml

a guest
Oct 5th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.99 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>com.romanidze</groupId>
  8.     <artifactId>jizzyshop</artifactId>
  9.     <version>1.0</version>
  10.     <packaging>war</packaging>
  11.  
  12.     <name>JizzyShop(Informatics)</name>
  13.  
  14.     <description>JizzyShop - современный магазин для ваших потребностей</description>
  15.  
  16.     <properties>
  17.  
  18.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19.         <jdk.version>1.8</jdk.version>
  20.  
  21.         <javax.servlet-api.version>4.0.0</javax.servlet-api.version>
  22.         <jstl.version>1.2</jstl.version>
  23.         <lombok.version>1.16.18</lombok.version>
  24.         <postgresql.version>42.1.4</postgresql.version>
  25.  
  26.         <maven-war-plugin.version>3.1.0</maven-war-plugin.version>
  27.         <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
  28.  
  29.     </properties>
  30.  
  31.     <dependencies>
  32.  
  33.         <dependency>
  34.             <groupId>javax.servlet</groupId>
  35.             <artifactId>javax.servlet-api</artifactId>
  36.             <version>${javax.servlet-api.version}</version>
  37.             <scope>provided</scope>
  38.         </dependency>
  39.  
  40.         <dependency>
  41.             <groupId>javax.servlet</groupId>
  42.             <artifactId>jstl</artifactId>
  43.             <version>${jstl.version}</version>
  44.         </dependency>
  45.  
  46.         <dependency>
  47.             <groupId>org.projectlombok</groupId>
  48.             <artifactId>lombok</artifactId>
  49.             <version>${lombok.version}</version>
  50.             <scope>provided</scope>
  51.         </dependency>
  52.  
  53.         <dependency>
  54.             <groupId>org.postgresql</groupId>
  55.             <artifactId>postgresql</artifactId>
  56.             <version>${postgresql.version}</version>
  57.         </dependency>
  58.  
  59.     </dependencies>
  60.  
  61.     <build>
  62.  
  63.         <finalName>JizzyShop(Informatics)</finalName>
  64.  
  65.         <plugins>
  66.  
  67.             <plugin>
  68.  
  69.                 <groupId>org.apache.maven.plugins</groupId>
  70.                 <artifactId>maven-war-plugin</artifactId>
  71.                 <version>${maven-war-plugin.version}</version>
  72.                 <configuration>
  73.                     <warSourceDirectory>src/main/webapp</warSourceDirectory>
  74.                 </configuration>
  75.  
  76.             </plugin>
  77.  
  78.             <plugin>
  79.  
  80.                 <groupId>org.apache.maven.plugins</groupId>
  81.                 <artifactId>maven-compiler-plugin</artifactId>
  82.                 <version>${maven-compiler-plugin.version}</version>
  83.                 <configuration>
  84.                     <source>${jdk.version}</source>
  85.                     <target>${jdk.version}</target>
  86.                     <encoding>${project.build.sourceEncoding}</encoding>
  87.                 </configuration>
  88.  
  89.             </plugin>
  90.  
  91.         </plugins>
  92.  
  93.     </build>
  94.  
  95. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement