Advertisement
Guest User

Untitled

a guest
Sep 7th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.92 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.dxc.app.seleniumdriver</groupId>
  8.     <artifactId>seleniumdriver</artifactId>
  9.     <version>1.0</version>
  10.     <repositories>
  11.         <repository>
  12.             <id>mavencentral</id>
  13.             <name>Maven Central</name>
  14.             <url>https://repo1.maven.org/maven2/</url>
  15.             <layout>default</layout>
  16.         </repository>
  17.     </repositories>
  18.     <build>
  19.         <plugins>
  20.             <plugin>
  21.                 <groupId>org.apache.maven.plugins</groupId>
  22.                 <artifactId>maven-compiler-plugin</artifactId>
  23.                 <version>3.6.1</version>
  24.                 <configuration>
  25.                     <source>1.8</source>
  26.                     <target>1.8</target>
  27.                 </configuration>
  28.             </plugin>
  29.             <plugin>
  30.                 <artifactId>maven-assembly-plugin</artifactId>
  31.                 <configuration>
  32.                     <descriptorRefs>
  33.                         <descriptorRef>jar-with-dependencies</descriptorRef>
  34.                     </descriptorRefs>
  35.                 </configuration>
  36.             </plugin>
  37.             <plugin>
  38.                 <groupId>org.apache.maven.plugins</groupId>
  39.                 <artifactId>maven-surefire-plugin</artifactId>
  40.                 <version>2.19.1</version>
  41.                 <dependencies>
  42.                     <dependency>
  43.                         <groupId>org.junit.platform</groupId>
  44.                         <artifactId>junit-platform-surefire-provider</artifactId>
  45.                         <version>1.1.0</version>
  46.                     </dependency>
  47.                     <dependency>
  48.                         <groupId>org.junit.jupiter</groupId>
  49.                         <artifactId>junit-jupiter-engine</artifactId>
  50.                         <version>5.1.0</version>
  51.                     </dependency>
  52.                 </dependencies>
  53.             </plugin>
  54.             <plugin>
  55.                 <!-- Build an executable JAR -->
  56.                 <groupId>org.apache.maven.plugins</groupId>
  57.                 <artifactId>maven-jar-plugin</artifactId>
  58.                 <version>3.1.0</version>
  59.                 <configuration>
  60.                     <archive>
  61.                         <manifest>
  62.                             <addClasspath>true</addClasspath>
  63.                             <mainClass>MainClass</mainClass>
  64.                         </manifest>
  65.                     </archive>
  66.                 </configuration>
  67.             </plugin>
  68.         </plugins>
  69.     </build>
  70.     <dependencies>
  71.         <dependency>
  72.             <groupId>org.apache.maven.plugins</groupId>
  73.             <artifactId>maven-compiler-plugin</artifactId>
  74.             <version>3.6.1</version>
  75.             <type>maven-plugin</type>
  76.         </dependency>
  77.         <dependency>
  78.             <groupId>com.googlecode.json-simple</groupId>
  79.             <artifactId>json-simple</artifactId>
  80.             <version>1.1.1</version>
  81.         </dependency>
  82.         <dependency>
  83.             <groupId>args4j</groupId>
  84.             <artifactId>args4j</artifactId>
  85.             <version>2.33</version>
  86.         </dependency>
  87.         <dependency>
  88.             <groupId>org.seleniumhq.selenium</groupId>
  89.             <artifactId>selenium-java</artifactId>
  90.             <version>3.4.0</version>
  91.         </dependency>
  92.         <dependency>
  93.             <groupId>org.junit.jupiter</groupId>
  94.             <artifactId>junit-jupiter-api</artifactId>
  95.             <version>5.1.0</version>
  96.             <scope>test</scope>
  97.         </dependency>
  98.         <dependency>
  99.             <groupId>org.junit.jupiter</groupId>
  100.             <artifactId>junit-jupiter-engine</artifactId>
  101.             <version>5.1.0</version>
  102.             <scope>test</scope>
  103.         </dependency>
  104.         <dependency>
  105.             <groupId>org.junit.vintage</groupId>
  106.             <artifactId>junit-vintage-engine</artifactId>
  107.             <version>5.1.0</version>
  108.             <scope>test</scope>
  109.         </dependency>
  110.         <dependency>
  111.             <groupId>org.junit.platform</groupId>
  112.             <artifactId>junit-platform-launcher</artifactId>
  113.             <version>1.1.0</version>
  114.             <scope>test</scope>
  115.         </dependency>
  116.         <dependency>
  117.             <groupId>org.junit.platform</groupId>
  118.             <artifactId>junit-platform-runner</artifactId>
  119.             <version>1.1.0</version>
  120.             <scope>test</scope>
  121.         </dependency>
  122.         <!-- https://mvnrepository.com/artifact/com.opencsv/opencsv -->
  123.         <dependency>
  124.             <groupId>com.opencsv</groupId>
  125.             <artifactId>opencsv</artifactId>
  126.             <version>3.10</version>
  127.         </dependency>
  128.     </dependencies>
  129. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement