operadriver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.opera</groupId> <artifactId>operadriver</artifactId> <version>1.5</version> </dependency>
<?xml version="1.0" encoding="Windows-1252"?> <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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.opera</groupId> <artifactId>operadriver</artifactId> <packaging>jar</packaging> <version>1.5</version> <name>OperaDriver</name> <description>OperaDriver is a vendor-supported WebDriver implementation developed by Opera Software and volunteers that implements WebDriver's wire protocol.</description> <url>http://opera.com/developer/tools/operadriver/</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:operasoftware/operadriver.git</connection> <developerConnection>scm:git:git@github.com:operasoftware/operadriver.git</developerConnection> <url>git@github.com:operasoftware/operadriver.git</url> </scm> <developers> <developer> <id>andreastt</id> <name>Andreas Tolf Tolfsen</name> <email>andreastt@opera.com</email> <url>http://sny.no/</url> <organization>Opera Software</organization> <organizationUrl>http://opera.com/</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>com.opera</groupId> <artifactId>operalaunchers</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>2.4.1</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>14.0</version> </dependency> <dependency> <groupId>commons-jxpath</groupId> <artifactId>commons-jxpath</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-exec</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>org.ini4j</groupId> <artifactId>ini4j</artifactId> <version>0.5.2</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>2.35.0</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <!-- See http://maven.apache.org/plugins/maven-antrun-plugin --> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>copy_java_files</id> <phase>generate-sources</phase> <configuration> <tasks> <delete dir="src/main/java" /> <copy todir="src/main/java" includeEmptyDirs="false"> <fileset dir="../src" /> </copy> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> <execution> <id>generate_version_file</id> <phase>generate-resources</phase> <configuration> <tasks> <mkdir dir="target/classes" /> <echo message="${version}" file="target/classes/VERSION" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> <execution> <id>copy_resource_files</id> <phase>generate-resources</phase> <configuration> <tasks> <copy todir="target/classes"> <fileset dir="../src" includes="**/*.properties" /> </copy> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>signals-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>