pogen4selenium-processor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.toolisticon.pogen4selenium</groupId>
<artifactId>pogen4selenium-processor</artifactId>
<version>0.15.2</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/maven-v4_0_0.xsd">
<parent>
<artifactId>pogen4selenium</artifactId>
<groupId>io.toolisticon.pogen4selenium</groupId>
<version>0.15.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pogen4selenium-processor</artifactId>
<name>pogen4selenium-processor</name>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>true</createDependencyReducedPom>
<relocations>
<relocation>
<pattern>io.toolisticon.aptk</pattern>
<shadedPattern>io.toolisticon.pogen4selenium._3rdparty.io.toolisticon.aptk</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<verbose>true</verbose>
<annotationProcessorPaths>
<path>
<groupId>io.toolisticon.spiap</groupId>
<artifactId>spiap-processor</artifactId>
<version>${spiap.version}</version>
</path>
<path>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>aptk-annotationwrapper-processor</artifactId>
<version>${aptk.version}</version>
</path>
<path>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>aptk-annotationwrapper-api</artifactId>
<version>${aptk.version}</version>
</path>
<path>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>aptk-compilermessages-processor</artifactId>
<version>${aptk.version}</version>
</path>
<path>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>aptk-compilermessages-api</artifactId>
<version>${aptk.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.27.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>aptk-annotationwrapper-api</artifactId>
<version>0.30.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>aptk-compilermessages-api</artifactId>
<version>0.30.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.toolisticon.spiap</groupId>
<artifactId>spiap-api</artifactId>
<version>0.11.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.toolisticon.cute</groupId>
<artifactId>cute</artifactId>
<version>1.8.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>extension-api</artifactId>
<groupId>io.toolisticon.cute</groupId>
</exclusion>
<exclusion>
<artifactId>extension-plainjava</artifactId>
<groupId>io.toolisticon.cute</groupId>
</exclusion>
<exclusion>
<artifactId>fluapigen-api</artifactId>
<groupId>io.toolisticon.fluapigen</groupId>
</exclusion>
<exclusion>
<artifactId>extension-modulesupport</artifactId>
<groupId>io.toolisticon.cute</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>aptk-cute</artifactId>
<version>0.30.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.17</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>2.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.28.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>byte-buddy-agent</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
<exclusion>
<artifactId>objenesis</artifactId>
<groupId>org.objenesis</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>