Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
added webdriver manager dependency to override version. 
Added exec-maven-plugin to run repo-editor. `mvn exec:java` can be used to start repo-editor server
  • Loading branch information
cjayswal authored Nov 3, 2023
1 parent e54128c commit 6e210e9
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
<sourceVersion>1.8</sourceVersion>
<targetVersion>1.8</targetVersion>
<qaf.version>LATEST</qaf.version>
<selenium.version>3.141.59</selenium.version>
<selenium.version>LATEST</selenium.version>
<webdrivermanager.version>LATEST</webdrivermanager.version>
<test.results.dir>test-results</test.results.dir>
<run.time>${maven.build.timestamp}</run.time>
<lib.dir>${project.basedir}/lib</lib.dir>
Expand All @@ -43,6 +44,11 @@
<artifactId>qaf</artifactId>
<version>${qaf.version}</version>
</dependency>
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>${webdrivermanager.version}</version>
</dependency>
<dependency>
<groupId>com.qmetry</groupId>
<artifactId>qaf-support</artifactId>
Expand All @@ -57,6 +63,23 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>repo-editor</id>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.qmetry.qaf.automation.tools.RepoEditor</mainClass>
<classpathScope>test</classpathScope>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit 6e210e9

Please sign in to comment.