readability4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>readability4j</artifactId>
<version>1.3.10</version>
</dependency><?xml version="1.0"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>openimaj-web</artifactId>
<groupId>org.openimaj</groupId>
<version>1.3.10</version>
<relativePath>../</relativePath>
</parent>
<artifactId>readability4j</artifactId>
<name>readability4j</name>
<inceptionYear>2010</inceptionYear>
<description>
Readability4J is a partial re-implementation of the original
readability.js script in Java. Many modifications have been
made however.
</description>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo,manual</distribution>
<comments>The Apache Software License, version 2.0</comments>
</license>
</licenses>
<developers>
<developer>
<id>jonhare</id>
<name>Jonathon Hare</name>
<email>jsh2@ecs.soton.ac.uk</email>
<url>http://www.ecs.soton.ac.uk/people/jsh2</url>
<organization>The University of Southampton</organization>
<organizationUrl>http://www.soton.ac.uk</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>0</timezone>
</developer>
<developer>
<id>mikemat</id>
<name>Michael Matthews</name>
<email>mikemat@yahoo.com</email>
<url>http://research.yahoo.com/Michael_Matthews</url>
<organization>Yahoo! Research Barcelona</organization>
<organizationUrl>http://research.yahoo.com/</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>0</timezone>
</developer>
<developer>
<id>davedupplaw</id>
<name>David Dupplaw</name>
<email>dpd@ecs.soton.ac.uk</email>
<url>http://www.ecs.soton.ac.uk/people/dpd</url>
<organization>The University of Southampton</organization>
<organizationUrl>http://www.soton.ac.uk</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>0</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>core-citation</artifactId>
<version>1.3.10</version>
</dependency>
<dependency>
<groupId>net.sourceforge.nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>1.9.14</version>
</dependency>
<dependency>
<groupId>org.pojava</groupId>
<artifactId>pojava</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>src/etc/header.txt</header>
<strictCheck>true</strictCheck>
<properties>
<year>${project.inceptionYear}</year>
</properties>
<excludes>
<exclude>AUTHORS</exclude>
<exclude>COPYING</exclude>
</excludes>
<mapping>
<jtemp>JAVADOC_STYLE</jtemp>
</mapping>
<useDefaultMapping>true</useDefaultMapping>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
<configuration>
<argLine>-Xmx1G -Djava.awt.headless=true</argLine>
<!-- <parallel>classes</parallel>
<perCoreThreadCount>2</perCoreThreadCount> -->
</configuration>
</plugin>
</plugins>
</build>
</project>