selenium-utils-groovy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.pojosontheweb</groupId> <artifactId>selenium-utils-groovy</artifactId> <version>2.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.pojosontheweb</groupId> <artifactId>selenium-utils</artifactId> <version>2.0.1</version> </parent> <artifactId>selenium-utils-groovy</artifactId> <packaging>jar</packaging> <name>selenium-utils/groovy</name> <dependencies> <dependency> <groupId>com.pojosontheweb</groupId> <artifactId>selenium-utils-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>${groovyVersion}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.gmaven</groupId> <artifactId>gmaven-plugin</artifactId> <version>${gmavenVersion}</version> <configuration> <providerSelection>${gmavenProviderSelection}</providerSelection> <sourceEncoding>UTF-8</sourceEncoding> </configuration> <executions> <execution> <goals> <goal>generateStubs</goal> <goal>compile</goal> <goal>testCompile</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>${groovyVersion}</version> </dependency> </dependencies> </plugin> <!-- cleanup any groovy generated file... --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.7</version> <executions> <execution> <id>clean-expression-classes</id> <phase>package</phase> <configuration> <target> <delete> <fileset dir="${project.basedir}/.." includes="Expression$*.class"/> </delete> <delete> <fileset dir="${project.basedir}" includes="Expression$*.class"/> </delete> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> <execution> <id>fix-categ-bug</id> <phase>process-resources</phase> <configuration> <target> <replace dir="${project.build.directory}/generated-sources/groovy-stubs/" value="Findr.ListFindr.class"> <include name="**/*.java"/> <replacetoken>Findr$ListFindr.class</replacetoken> </replace> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <!--<plugin>--> <!--<groupId>org.codehaus.mojo</groupId>--> <!--<artifactId>build-helper-maven-plugin</artifactId>--> <!--<version>1.9.1</version>--> <!--<executions>--> <!--<execution>--> <!--<id>add-groovy-source</id>--> <!--<!– before package phase –>--> <!--<phase>test</phase>--> <!--<goals>--> <!--<goal>add-source</goal>--> <!--</goals>--> <!--<configuration>--> <!--<sources>--> <!--<source>${basedir}/src/main/groovy</source>--> <!--</sources>--> <!--</configuration>--> <!--</execution>--> <!--<execution>--> <!--<id>add-groovy-test-source</id>--> <!--<!– before package phase –>--> <!--<phase>test</phase>--> <!--<goals>--> <!--<goal>add-test-source</goal>--> <!--</goals>--> <!--<configuration>--> <!--<sources>--> <!--<source>${basedir}/src/test/groovy</source>--> <!--</sources>--> <!--</configuration>--> <!--</execution>--> <!--</executions>--> <!--</plugin>--> </plugins> </build> </project>