atoms-htmlparser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.vedenin.atoms</groupId> <artifactId>atoms-htmlparser</artifactId> <version>0.1-jsoup-draft</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>com.github.vedenin.atoms</groupId> <artifactId>atoms-htmlparser</artifactId> <packaging>jar</packaging> <version>0.1-jsoup-draft</version> <name>Html parser [jsoup]</name> <description>Project provide implementation of Atom pattern for html parser using jsop</description> <url>https://github.com/Vedenin/atom-pattern</url> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <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> <url>https://github.com/Vedenin/atom-pattern</url> <connection>scm:hg:https://github.com/Vedenin/atom-pattern</connection> <developerConnection>scm:hg:https://github.com/Vedenin/atom-pattern</developerConnection> </scm> <developers> <developer> <id>owner</id> <name>Viacheslav Vedenin</name> <email>vedenin1980@gmail.com</email> <timezone>UTC+1</timezone> </developer> </developers> <properties> <!-- Convenience property to set the GWT version --> <gwt.version>2.8.2</gwt.version> <!-- GWT 2.8 requires 1.8 --> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.github.vedenin.atoms</groupId> <artifactId>annotations</artifactId> <version>1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.11.2</version> </dependency> <dependency> <groupId>com.github.vedenin.atoms</groupId> <artifactId>collections</artifactId> <version>0.1-guava-draft</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.vedenin.atoms</groupId> <artifactId>atoms-io</artifactId> <version>0.1-default-draft</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <configuration> <passphrase>${gpg.passphrase}</passphrase> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>