Nik_Perepelov

pom

Dec 17th, 2021
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.74 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</groupId>
  8.     <artifactId>labs</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.     <dependencies>
  11.         <dependency>
  12.             <groupId>org.jetbrains</groupId>
  13.             <artifactId>annotations</artifactId>
  14.             <version>RELEASE</version>
  15.             <scope>compile</scope>
  16.         </dependency>
  17.         <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  18.         <dependency>
  19.             <groupId>org.apache.commons</groupId>
  20.             <artifactId>commons-lang3</artifactId>
  21.             <version>3.12.0</version>
  22.         </dependency>
  23.         <dependency>
  24.             <groupId>org.junit.jupiter</groupId>
  25.             <artifactId>junit-jupiter-api</artifactId>
  26.             <version>5.6.0</version>
  27.             <scope>test</scope>
  28.         </dependency>
  29.         <dependency>
  30.             <groupId>org.junit.jupiter</groupId>
  31.             <artifactId>junit-jupiter-engine</artifactId>
  32.             <version>5.6.0</version>
  33.             <scope>test</scope>
  34.         </dependency>
  35.     </dependencies>
  36.  
  37.     <build>
  38.         <plugins>
  39.             <plugin>
  40.                 <artifactId>maven-surefire-plugin</artifactId>
  41.                 <version>2.22.2</version>
  42.             </plugin>
  43.         </plugins>
  44.     </build>
  45.  
  46.     <properties>
  47.         <maven.compiler.source>11</maven.compiler.source>
  48.         <maven.compiler.target>11</maven.compiler.target>
  49.     </properties>
  50.  
  51. </project>
Add Comment
Please, Sign In to add comment