htmlunit-core-js
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jvnet.hudson</groupId> <artifactId>htmlunit-core-js</artifactId> <version>2.6-hudson-1</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"> <modelVersion>4.0.0</modelVersion> <groupId>org.jvnet.hudson</groupId> <artifactId>htmlunit-core-js</artifactId> <version>2.6-hudson-1</version> <packaging>jar</packaging> <name>HtmlUnit Core JS</name> <url>http://htmlunit.sourceforge.net</url> <description> HtmlUnit adaptation of Mozilla Rhino Javascript engine for Java. Changes are documented by a diff (rhinoDiff.txt) contained in the generated jar files. </description> <licenses> <license> <name>Mozilla Public License version 1.1</name> <url>http://www.mozilla.org/MPL/MPL-1.1.html</url> <distribution>repo</distribution> </license> </licenses> <build> <plugins> <!-- fake out maven and install the binary artifact --> <plugin> <groupId>org.jvnet.maven-antrun-extended-plugin</groupId> <artifactId>maven-antrun-extended-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <ant dir="." target="jar-all" /> <attachArtifact file="target/htmlunit-core-js-${project.version}.jar" /> <attachArtifact file="target/htmlunit-core-js-${project.version}-sources.jar" classifier="sources" type="jar"/> </tasks> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.8</version> </extension> </extensions> </build> <distributionManagement> <repository> <id>java.net-m2-repository</id> <url>java-net:/maven2-repository/trunk/repository/</url> </repository> </distributionManagement> <repositories> <repository> <id>maven2-repository.dev.java.net</id> <name>Java.net Repository for Maven</name> <url>http://download.java.net/maven/2/</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>maven2-repository.dev.java.net</id> <name>Java.net Repository for Maven</name> <url>http://download.java.net/maven/2/</url> </pluginRepository> </pluginRepositories> </project>