Guest User

Untitled

a guest
Feb 19th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.16 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  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>ml.svischuk</groupId>
  8.     <artifactId>tote</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.     <packaging>war</packaging>
  11.  
  12.     <name>блаблабла</name>
  13.  
  14.     <properties>
  15.  
  16.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17.         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18.         <maven.compiler.source>1.8</maven.compiler.source>
  19.         <maven.compiler.target>1.8</maven.compiler.target>
  20.         <log4j2.version>2.11.2</log4j2.version>
  21.         <servlet.version>3.1.0</servlet.version>
  22.         <jstl.version>1.2</jstl.version>
  23.         <junit.version>4.11</junit.version>
  24.         <mysql.version>8.0.18</mysql.version>
  25.  
  26.     </properties>
  27.  
  28.     <dependencies>
  29.  
  30.         <dependency>
  31.             <groupId>junit</groupId>
  32.             <artifactId>junit</artifactId>
  33.             <version>${junit.version}</version>
  34.             <scope>test</scope>
  35.         </dependency>
  36.  
  37.         <dependency>
  38.             <groupId>org.apache.logging.log4j</groupId>
  39.             <artifactId>log4j-api</artifactId>
  40.             <version>${log4j2.version}</version>
  41.             <scope>compile</scope>
  42.         </dependency>
  43.  
  44.         <dependency>
  45.             <groupId>org.apache.logging.log4j</groupId>
  46.             <artifactId>log4j-core</artifactId>
  47.             <version>${log4j2.version}</version>
  48.             <scope>compile</scope>
  49.         </dependency>
  50.  
  51.         <dependency>
  52.             <groupId>javax.servlet</groupId>
  53.             <artifactId>javax.servlet-api</artifactId>
  54.             <version>${servlet.version}</version>
  55.             <scope>provided</scope>
  56.         </dependency>
  57.  
  58.         <dependency>
  59.             <groupId>javax.servlet.jsp.jstl</groupId>
  60.             <artifactId>jstl-api</artifactId>
  61.             <version>${jstl.version}</version>
  62.             <scope>compile</scope>
  63.         </dependency>
  64.  
  65.         <dependency>
  66.             <groupId>javax.servlet</groupId>
  67.             <artifactId>jstl</artifactId>
  68.             <version>${jstl.version}</version>
  69.             <scope>compile</scope>
  70.         </dependency>
  71.  
  72.         <dependency>
  73.             <groupId>mysql</groupId>
  74.             <artifactId>mysql-connector-java</artifactId>
  75.             <version>${mysql.version}</version>
  76.         </dependency>
  77.  
  78.         <dependency>
  79.             <groupId>org.aspectj</groupId>
  80.             <artifactId>aspectjrt</artifactId>
  81.             <version>1.9.5</version>
  82.         </dependency>
  83.  
  84.         <dependency>
  85.             <groupId>org.aspectj</groupId>
  86.             <artifactId>aspectjweaver</artifactId>
  87.             <version>1.9.5</version>
  88.         </dependency>
  89.  
  90.         <dependency>
  91.             <groupId>org.aspectj</groupId>
  92.             <artifactId>aspectjtools</artifactId>
  93.             <version>1.9.5</version>
  94.         </dependency>
  95.  
  96.     </dependencies>
  97.  
  98.     <build>
  99.         <finalName>tote</finalName>
  100.         <pluginManagement>
  101.             <plugins>
  102.                 <plugin>
  103.                     <artifactId>maven-compiler-plugin</artifactId>
  104.                     <configuration>
  105.                         <source>${maven.compiler.source}</source>
  106.                         <target>${maven.compiler.target}</target>
  107.                     </configuration>
  108.                 </plugin>
  109.  
  110.                 <plugin>
  111.                     <groupId>org.apache.maven.plugins</groupId>
  112.                     <artifactId>maven-war-plugin</artifactId>
  113.                 </plugin>
  114.  
  115.                 <plugin>
  116.                     <groupId>org.codehaus.mojo</groupId>
  117.                     <artifactId>aspectj-maven-plugin</artifactId>
  118.                     <version>1.11</version>
  119.                     <configuration>
  120.                         <complianceLevel>${java.version}</complianceLevel>
  121.                         <source>${maven.compiler.source}</source>
  122.                         <target>${maven.compiler.target}</target>
  123.                         <showWeaveInfo>true</showWeaveInfo>
  124.                         <includes>
  125.                             <include>**/пакет к аспектам/*.java</include>
  126.                         </includes>
  127.                     </configuration>
  128.                     <executions>
  129.                         <execution>
  130.                             <goals>
  131.                                 <goal>compile</goal>
  132.                                 <goal>test-compile</goal>
  133.                             </goals>
  134.                         </execution>
  135.                     </executions>
  136.                     <dependencies>
  137.                         <dependency>
  138.                             <groupId>org.aspectj</groupId>
  139.                             <artifactId>aspectjtools</artifactId>
  140.                             <version>1.9.5</version>
  141.                         </dependency>
  142.                     </dependencies>
  143.                 </plugin>
  144.             </plugins>
  145.         </pluginManagement>
  146.     </build>
  147. </project>
Add Comment
Please, Sign In to add comment