nekohtml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codelibs</groupId> <artifactId>nekohtml</artifactId> <version>2.1.3</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"> <parent> <artifactId>oss-parent</artifactId> <groupId>org.sonatype.oss</groupId> <version>9</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.codelibs</groupId> <artifactId>nekohtml</artifactId> <name>Neko HTML</name> <version>2.1.3</version> <description>An HTML parser and tag balancer.</description> <url>https://github.com/codelibs/nekohtml</url> <inceptionYear>2012</inceptionYear> <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:codelibs/nekohtml.git</connection> <developerConnection>scm:git:git@github.com:codelibs/nekohtml.git</developerConnection> <url>scm:git:git@github.com:codelibs/nekohtml.git</url> </scm> <organization> <name>CodeLibs Project</name> <url>https://www.codelibs.org/</url> </organization> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <release>11</release> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>source-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.2</version> <configuration> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <charset>UTF-8</charset> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>org.codelibs.nekohtml</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.2</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.10</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.3</version> <configuration> <header>https://www.codelibs.org/assets/license/header.txt</header> <properties> <year>2019</year> </properties> <includes> <include>src/**/*.java</include> </includes> <encoding>UTF-8</encoding> <headerDefinitions> <headerDefinition>https://www.codelibs.org/assets/license/header-definition-2.xml</headerDefinition> </headerDefinitions> </configuration> </plugin> <plugin> <groupId>net.revelc.code</groupId> <artifactId>formatter-maven-plugin</artifactId> <version>0.5.2</version> <executions> <execution> <goals> <goal>format</goal> </goals> </execution> </executions> <configuration> <configFile>${basedir}/src/config/eclipse/formatter/java.xml</configFile> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.5.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <filters> <filter> <artifact>org.codelibs.xerces:xercesImpl</artifact> <includes> <include>org/apache/**</include> </includes> <excludes> <exclude>META-INF/**</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>org.apache</pattern> <shadedPattern>org.codelibs.xerces</shadedPattern> <includes> <include>org.apache.html.**</include> <include>org.apache.wml.**</include> <include>org.apache.xerces.**</include> <include>org.apache.xml.**</include> </includes> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>