Download xsoup-0.3.1.jar file

Introduction

You can download xsoup-0.3.1.jar in this page.

License

The MIT License

Type List

xsoup-0.3.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/us.codecraft/xsoup/pom.properties
META-INF/maven/us.codecraft/xsoup/pom.xml
us.codecraft.xsoup.XElement.class
us.codecraft.xsoup.XElements.class
us.codecraft.xsoup.XPathEvaluator.class
us.codecraft.xsoup.XTokenQueue.class
us.codecraft.xsoup.Xsoup.class
us.codecraft.xsoup.w3c.AttributeAdaptor.class
us.codecraft.xsoup.w3c.AttributesAdaptor.class
us.codecraft.xsoup.w3c.DocumentAdaptor.class
us.codecraft.xsoup.w3c.DummyTypeInfo.class
us.codecraft.xsoup.w3c.ElementAdaptor.class
us.codecraft.xsoup.w3c.HtmlDocumentType.class
us.codecraft.xsoup.w3c.NamedNodeMapAdaptor.class
us.codecraft.xsoup.w3c.NodeAdaptor.class
us.codecraft.xsoup.w3c.NodeAdaptors.class
us.codecraft.xsoup.w3c.NodeListAdaptor.class
us.codecraft.xsoup.xevaluator.CombingXPathEvaluator.class
us.codecraft.xsoup.xevaluator.CombiningDefaultXElements.class
us.codecraft.xsoup.xevaluator.CombiningEvaluator.class
us.codecraft.xsoup.xevaluator.DefaultXElement.class
us.codecraft.xsoup.xevaluator.DefaultXElements.class
us.codecraft.xsoup.xevaluator.DefaultXPathEvaluator.class
us.codecraft.xsoup.xevaluator.ElementOperator.class
us.codecraft.xsoup.xevaluator.StructuralEvaluator.class
us.codecraft.xsoup.xevaluator.XEvaluators.class
us.codecraft.xsoup.xevaluator.XPathParser.class

Pom

xsoup-0.3.1.pom file content.

<?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/xsd/maven-4.0.0.xsd">
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
    <groupId>us.codecraft</groupId>
    <artifactId>xsoup</artifactId>
    <version>0.3.1</version>
    <modelVersion>4.0.0</modelVersion>
    <packaging>jar</packaging>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>
    <name>xsoup</name>
    <description>
        HTML XPath selector based on Jsoup.
    </description>
    <url>https://github.com/code4craft/xsoup/</url>
    <developers>
        <developer>
            <id>code4craft</id>
            <name>Yihua huang</name>
            <email>code4crafer@gmail.com</email>
        </developer>
    </developers>
    <scm>
        <connection>scm:git:git@github.com:code4craft/xsoup.git</connection>
        <developerConnection>scm:git:git@github.com:code4craft/xsoup.git</developerConnection>
        <url>git@github.com:code4craft/xsoup.git</url>
      <tag>xsoup-0.3.1</tag>
  </scm>
   <licenses>
    <license>
        <name>The MIT License</name>
        <url>http://jsoup.com/license</url>
        <distribution>repo</distribution>
    </license>  
  </licenses>

        <dependencies>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.7</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.jsoup</groupId>
                <artifactId>jsoup</artifactId>
                <version>1.8.3</version>
            </dependency>
            <dependency>
                <groupId>org.assertj</groupId>
                <artifactId>assertj-core</artifactId>
                <version>1.5.0</version>
            </dependency>
        </dependencies>

    <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>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>2.8</version>
                <executions>
                    <execution>
                        <id>copy-dependencies</id>
                        <phase>package</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${project.build.directory}/lib</outputDirectory>
                            <overWriteReleases>false</overWriteReleases>
                            <overWriteSnapshots>false</overWriteSnapshots>
                            <overWriteIfNewer>true</overWriteIfNewer>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <encoding>UTF-8</encoding>
                </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>
                        <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.1</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.5</version>
                <configuration>
                    <autoVersionSubmodules>true</autoVersionSubmodules>
                    <useReleaseProfile>false</useReleaseProfile>
                    <releaseProfiles>release</releaseProfiles>
                    <goals>deploy</goals>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>release</id>
            <build>
                <plugins>
                    <!-- Source -->
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-source-plugin</artifactId>
                        <version>2.2.1</version>
                        <executions>
                            <execution>
                                <phase>package</phase>
                                <goals>
                                    <goal>jar-no-fork</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <!-- Javadoc -->
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-javadoc-plugin</artifactId>
                        <version>2.9.1</version>
                        <executions>
                            <execution>
                                <phase>package</phase>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <!-- GPG -->
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.5</version>
                        <executions>
                            <execution>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.sonatype.plugins</groupId>
                        <artifactId>nexus-staging-maven-plugin</artifactId>
                        <version>1.6</version>
                        <extensions>true</extensions>
                        <configuration>
                            <serverId>sonatype-nexus-staging</serverId>
                            <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                            <autoReleaseAfterClose>true</autoReleaseAfterClose>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
            <distributionManagement>
                <snapshotRepository>
                    <id>sonatype-nexus-snapshots</id>
                    <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
                </snapshotRepository>
                <repository>
                    <id>sonatype-nexus-staging</id>
                    <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
                </repository>
            </distributionManagement>
        </profile>
    </profiles>


</project>

POM Entry

<dependency>
   <groupId>us.codecraft</groupId>
   <artifactId>xsoup</artifactId>
   <version>0.3.1</version>
</dependency>

Download

If you think the following xsoup-0.3.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download xsoup-0.3.1.jar file




PreviousNext

Related