Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.10 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>21</groupId>
  8.     <artifactId>21</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <build>
  12.         <plugins>
  13.             <plugin>
  14.                 <groupId>org.apache.maven.plugins</groupId>
  15.                 <artifactId>maven-compiler-plugin</artifactId>
  16.                 <configuration>
  17.                     <source>1.8</source>
  18.                     <target>1.8</target>
  19.                 </configuration>
  20.             </plugin>
  21.         </plugins>
  22.     </build>
  23.  
  24.     <dependencies>
  25.  
  26.         <!-- https://mvnrepository.com/artifact/org.testng/testng -->
  27.         <dependency>
  28.             <groupId>org.testng</groupId>
  29.             <artifactId>testng</artifactId>
  30.             <version>6.14.3</version>
  31.             <scope>test</scope>
  32.         </dependency>
  33.  
  34.     </dependencies>
  35.  
  36.  
  37. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement