neko-htmlunit
Used in: 1058 components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
Overview
Description
HtmlUnit adaptation of NekoHtml.
It has the same functionality but exposing HTMLElements to be overridden.
Snippets
<dependency> <groupId>net.sourceforge.htmlunit</groupId> <artifactId>neko-htmlunit</artifactId> <version>2.70.0</version> </dependency>
Maven POM File
<?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>net.sourceforge.htmlunit</groupId> <artifactId>neko-htmlunit</artifactId> <version>2.70.0</version> <name>HtmlUnit NekoHtml</name> <organization> <name>Gargoyle Software Inc.</name> <url>http://www.GargoyleSoftware.com/</url> </organization> <packaging>jar</packaging> <description> HtmlUnit adaptation of NekoHtml. It has the same functionality but exposing HTMLElements to be overridden. </description> <url>http://htmlunit.sourceforge.net</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <checkstyle.version>9.3</checkstyle.version> <spotbugs.version>4.7.3</spotbugs.version> <pmd.version>6.50.0</pmd.version> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.9.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <archive> <manifest> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <Url>${project.url}</Url> <Build-Time>${maven.build.timestamp}</Build-Time> </manifestEntries> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <configuration> <doclint>none</doclint> <quiet>true</quiet> <!--doclint>html,missing,reference,syntax<doclint--> <detectLinks>true</detectLinks> <detectJavaApiLink>true</detectJavaApiLink> <excludePackageNames>netscape:netscape.*</excludePackageNames> </configuration> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.2.0</version> <configuration> <configLocation>checkstyle.xml</configLocation> <suppressionsLocation>checkstyle_suppressions.xml</suppressionsLocation> <includeTestSourceDirectory>true</includeTestSourceDirectory> </configuration> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${checkstyle.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.7.3.0</version> <dependencies> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs</artifactId> <version>${spotbugs.version}</version> </dependency> </dependencies> <configuration> <excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.19.0</version> <dependencies> <dependency> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd-core</artifactId> <version>${pmd.version}</version> </dependency> <dependency> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd-java</artifactId> <version>${pmd.version}</version> </dependency> </dependencies> <configuration> <rulesets> <ruleset>${basedir}/pmd-ruleset.xml</ruleset> </rulesets> </configuration> </plugin> </plugins> </build> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>GitHub</system> <url>https://github.com/HtmlUnit/neko-htmlunit/issues/</url> </issueManagement> <scm> <connection>scm:git:git@github.com:HtmlUnit/htmlunit-neko.git</connection> <developerConnection>scm:git:git@github.com:HtmlUnit/htmlunit-neko.git</developerConnection> <url>https://github.com/htmlunit</url> </scm> <ciManagement> <system>Jenkins</system> <url>https://jenkins.wetator.org/view/HtmlUnit/</url> </ciManagement> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <repositories> <repository> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> <releases> <enabled>false</enabled> </releases> <id>OSS Sonatype snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </repository> </repositories> <developers> <developer> <name>Andy Clark</name> </developer> <developer> <name>Marc Guillemot</name> <id>mguillem</id> <email>mguillem@users.sourceforge.net</email> <url>http://mguillem.wordpress.com/</url> <timezone>+1</timezone> </developer> <developer> <name>Ahmed Ashour</name> <id>asashour</id> <email>asashour@users.sourceforge.net</email> <url>http://asashour.blogspot.com/</url> <timezone>+3</timezone> </developer> <developer> <name>Ronald Brill</name> <id>rbri</id> <email>rbri@rbri.de</email> <url>http://www.wetator.org/</url> <timezone>+1</timezone> </developer> </developers> <contributors> <contributor> <name>Markus Heiden</name> <email>markus@markusheiden.de</email> <url>www.markusheiden.de</url> </contributor> </contributors> </project>