webengine-runner
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fr.axa.automation.webengine</groupId> <artifactId>webengine-runner</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-runner</artifactId> <packaging>jar</packaging> <name>webengine-runner</name> <description>${parent.description}</description> <url>${parent.url}</url> <properties> <start-class>fr.axa.automation.webengine.Application</start-class> </properties> <dependencies> <dependency> <groupId>fr.axa.automation.webengine</groupId> <artifactId>webengine-boot-keyword-driven</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <mainClass>${start-class}</mainClass> <classifier>exec</classifier> <excludeDevtools>true</excludeDevtools> </configuration> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>fr.axa.automation.webengine.Application.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration> <excludes> <exclude>fr/axa/automation/webengine/Application.class</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>