tapir-selenium-ie
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.bmiag.tapir</groupId>
<artifactId>tapir-selenium-ie</artifactId>
<version>4.0.0</version>
</dependency><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>
<artifactId>tapir-selenium-ie</artifactId>
<parent>
<groupId>de.bmiag.tapir</groupId>
<artifactId>tapir-parent</artifactId>
<version>4.0.0</version>
<relativePath>../../../tapir-parent</relativePath>
</parent>
<name>${project.groupId}:${project.artifactId}</name>
<description>tapir IE Driver</description>
<url>https://www.tapir-test.io</url>
<dependencies>
<dependency>
<groupId>de.bmiag.tapir</groupId>
<artifactId>tapir-util</artifactId>
</dependency>
<dependency>
<groupId>de.bmiag.tapir</groupId>
<artifactId>tapir-annotations</artifactId>
</dependency>
<dependency>
<groupId>de.bmiag.tapir</groupId>
<artifactId>tapir-bootstrap</artifactId>
</dependency>
<dependency>
<groupId>de.bmiag.tapir</groupId>
<artifactId>tapir-selenium</artifactId>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-ie-driver</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-remote-driver</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.xtext</groupId>
<artifactId>org.eclipse.xtext.xbase.lib</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.xtend</groupId>
<artifactId>org.eclipse.xtend.lib</artifactId>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<ignoredUnusedDeclaredDependencies>
<!-- We have to ignore de.bmiag.tapir:tapir-util as this is detected
as false positive. -->
<ignoredUnusedDeclaredDependency>de.bmiag.tapir:tapir-util:jar:*</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>