univocity-html-parser-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.univocity</groupId> <artifactId>univocity-html-parser-api</artifactId> <version>2.2.1</version> </dependency>
<!-- ~ Copyright (c) 2013 Univocity Software Pty Ltd. All rights reserved. ~ This file is subject to the terms and conditions defined in file ~ 'LICENSE.txt', which is part of this source code package. --> <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> <groupId>com.univocity</groupId> <artifactId>univocity-html-parser-api</artifactId> <version>2.2.1</version> <name>univocity-html-parser-api</name> <description>Univocity HTML Parser Public API</description> <organization> <name>Univocity Software Pty Ltd</name> <url>www.univocity.com</url> </organization> <url>http://github.com/univocity/univocity-html-parser-api</url> <licenses> <license> <name>Univocity</name> <url>http://www.univocity.com/pages/license</url> <distribution>repo</distribution> <comments>Univocity license</comments> </license> </licenses> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/univocity/univocity-html-parser-api/issues</url> </issueManagement> <scm> <url>https://github.com/univocity/univocity-html-parser-api</url> <connection>scm:git:git://github.com/univocity/univocity-html-parser-api.git</connection> <developerConnection>scm:git:git@github.com:univocity/univocity-html-parser-api.git</developerConnection> </scm> <developers> <developer> <id>jbax</id> <name>Jeronimo Backes</name> <email>jbax@univocity.com</email> <timezone>+9:30</timezone> </developer> <developer> <id>dev</id> <name>univocity development team</name> <email>dev@univocity.com</email> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <javadocExecutable>${JDK8_HOME}/bin/javadoc</javadocExecutable> <doclet>ch.raffael.mddoclet.MarkdownDoclet</doclet> <docletArtifact> <groupId>ch.raffael.markdown-doclet</groupId> <artifactId>markdown-doclet</artifactId> <version>1.4</version> </docletArtifact> <useStandardDocletOptions>true</useStandardDocletOptions> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.3.1</version> <executions> <execution> <id>enforce-versions</id> <phase>install</phase> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireJavaVersion> <version>1.6</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.5</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </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>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.4</version> <configuration> <descriptorRefs> <descriptorRef>project</descriptorRef> </descriptorRefs> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.2</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <dependency> <groupId>com.univocity</groupId> <artifactId>univocity-common-parser-api</artifactId> <version>2.2.1</version> </dependency> </dependencies> <!-- only sign the artifact when releasing (i.e. "mvn release:perform") --> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>