webengine-boot-keyword-driven
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>fr.axa.automation.webengine</groupId>
<artifactId>webengine-boot-keyword-driven</artifactId>
<version>4.5.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>fr.axa.automation.webengine</groupId>
<artifactId>webengine-parent</artifactId>
<version>4.5.0</version>
</parent>
<artifactId>webengine-boot-keyword-driven</artifactId>
<packaging>jar</packaging>
<name>webengine-boot-keyword-driven</name>
<description>${parent.description}</description>
<url>${parent.url}</url>
<dependencies>
<dependency>
<groupId>fr.axa.automation.webengine</groupId>
<artifactId>webengine-cmd-line</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>fr.axa.automation.webengine.argument.ArgumentOption.java</exclude>
<exclude>fr.axa.automation.webengine.constante.*</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>fr/axa/automation/webengine/argument/ArgumentOption.class</exclude>
<exclude>fr/axa/automation/webengine/constante/*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>