htmlcleaner
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sourceforge.htmlcleaner</groupId> <artifactId>htmlcleaner</artifactId> <version>2.29</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>net.sourceforge.htmlcleaner</groupId> <artifactId>htmlcleaner</artifactId> <packaging>bundle</packaging> <version>2.29</version> <name>HtmlCleaner</name> <description> HtmlCleaner is an HTML parser written in Java. It transforms dirty HTML to well-formed XML following the same rules that most web-browsers use. </description> <url>http://htmlcleaner.sourceforge.net/</url> <inceptionYear>2006</inceptionYear> <licenses> <license> <name>BSD License</name> <url>http://www.opensource.org/licenses/bsd-license.php</url> <comments> OWNER = Vladimir Nikic, Pat Moore and Scott Wilson YEAR = 2006-2023 </comments> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Vladimir Nikic</name> <id>vnikic</id> <roles> <role>Project Admin</role> <role>Developer</role> </roles> <timezone>1</timezone> <email>vnikic@users.sourceforge.net</email> </developer> <developer> <name>Patrick Moore</name> <id>patmoore</id> <roles> <role>Project Admin</role> <role>Developer</role> </roles> <timezone>-8</timezone> <email>patmoore@farreach.es</email> </developer> <developer> <name>Scott Wilson</name> <id>scottbw</id> <roles> <role>Project Admin</role> <role>Developer</role> </roles> <timezone>1</timezone> <email>scottbw@apache.org</email> </developer> </developers> <prerequisites> <maven>3.0.4</maven> </prerequisites> <scm> <url>https://svn.code.sf.net/p/htmlcleaner/code/tags/htmlcleaner-2.29</url> <connection>scm:svn:https://svn.code.sf.net/p/htmlcleaner/code/tags/htmlcleaner-2.29</connection> <developerConnection>scm:svn:https://svn.code.sf.net/p/htmlcleaner/code/tags/htmlcleaner-2.29</developerConnection> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <wagon-build>1.0-beta-7</wagon-build> </properties> <dependencies> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> <version>2.0.6.1</version> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.9.0</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.0.1</version> <extensions>true</extensions> <configuration> <instructions> <Export-Package>org.htmlcleaner.*</Export-Package> <Main-Class>org.htmlcleaner.CommandLine</Main-Class> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.7</version> <configuration> <uniqueVersion>false</uniqueVersion> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> <configuration> <attach>true</attach> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifestFile>config/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF-8</encoding> <optimize>true</optimize> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <!-- only required when scott is doing the release! --> <configuration> <keyname>C9F09252</keyname> </configuration> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-external</artifactId> <version>${wagon-build}</version> </extension> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ftp</artifactId> <version>${wagon-build}</version> </extension> </extensions> </build> <!-- For publishing on Sonatype --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <!-- https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide#SonatypeOSSMavenRepositoryUsageGuide-6.CentralSyncRequirement they don't want repositories listed in poms <pluginRepositories> <pluginRepository> <id>oss-sonatype-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </pluginRepository> </pluginRepositories> --> </project>