OperaDriver.
OperaDriver is a vendor-supported WebDriver implementation developed by Opera Software and volunteers that implements WebDriver's wire protocol..
Here is the list of declaration for operadriver. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.opera</groupId> <artifactId>operadriver</artifactId> <version>1.1</version> </dependency>
If you think this Maven repository POM file listing for operadriver is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The operadriver-1.1 has 7 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Network | protobuf-java 2.4.1 Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. | 129 |
Java Library | guava 13.0.1 Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. Guava has only one code dependency - javax.annotation, per the JSR-305 spec. | 98 |
XPath | commons-jxpath 1.3 A Java-based implementation of XPath 1.0 that, in addition to XML processing, can inspect/modify Java object graphs (the library's explicit purpose) and even mixed Java/XML structures. | 30 |
Virtual Machine | commons-exec 1.1 A library to reliably execute external processes from within the JVM | 49 |
The following plugins are used in the operadriver-1.1.jar
The following packages are defined in the operadriver-1.1.jar
com.opera.core.systems com.opera.core.systems.arguments com.opera.core.systems.arguments.interfaces com.opera.core.systems.common.collect com.opera.core.systems.common.hash com.opera.core.systems.common.io com.opera.core.systems.common.lang com.opera.core.systems.internal com.opera.core.systems.internal.input com.opera.core.systems.mobile com.opera.core.systems.model com.opera.core.systems.preferences com.opera.core.systems.runner com.opera.core.systems.runner.inprocess com.opera.core.systems.runner.launcher com.opera.core.systems.scope com.opera.core.systems.scope.exceptions com.opera.core.systems.scope.handlers com.opera.core.systems.scope.internal com.opera.core.systems.scope.protos com.opera.core.systems.scope.services com.opera.core.systems.scope.services.desktop com.opera.core.systems.scope.stp com.opera.core.systems.scope.stp.services com.opera.core.systems.scope.stp.services.desktop com.opera.core.systems.scope.stp.services.messages com.opera.core.systems.scope.stp.services.messages.desktop com.opera.core.systems.testing.drivers
Here is the content of the POM file.
<?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.1</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> <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>13.0.1</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.25.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>