Maven Repository - POM file for Library xerial-core 1.0.21 1.0.21

Summary

Xerial Core.

Core library of the Xerial project..

Declaration

Here is the list of declaration for xerial-core. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.xerial</groupId>
   <artifactId>xerial-core</artifactId>
   <version>1.0.21</version>
</dependency>

If you think this Maven repository POM file listing for xerial-core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The xerial-core-1.0.21 has 5 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
XMLxpp3 1.1.4c
MXP1 is a stable XmlPull parsing engine that is based on ideas from XPP and in particular XPP2 but completely revised and rewritten to take the best advantage of latest JIT JVMs such as Hotspot in JDK 1.4+.
78
Logcommons-logging 1.1.1
Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.
1143
JDBCsqlite-jdbc 3.6.20
SQLite JDBC library
18




Depended by

The following table lists the most popular artifacts which are depending on xerial-core-1.0.21. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Developmentsnappy-java 1.0.5-M3
snappy-java: A fast compression/decompression library
8
Developmentsnappy-java 1.0.4.1
snappy-java: A fast compression/decompression library
135
Developmentsnappy-java 1.0.3
snappy-java: A fast compression/decompression library
21
Developmentsnappy-java 1.0.3.2
snappy-java: A fast compression/decompression library
11
Developmentsnappy-java 1.0.5
snappy-java: A fast compression/decompression library
49
Developmentsnappy-java 1.1.0-M3
snappy-java: A fast compression/decompression library
9

Plugin

The following plugins are used in the xerial-core-1.0.21.jar

  1. maven-antlr-plugin
  2. maven-eclipse-plugin
  3. maven-release-plugin
  4. maven-shade-plugin




Packages

The following packages are defined in the xerial-core-1.0.21.jar

org.xerial.core
org.xerial.json
org.xerial.json.impl
org.xerial.lens
org.xerial.lens.impl
org.xerial.lens.relation
org.xerial.lens.relation.index
org.xerial.lens.relation.lang
org.xerial.lens.relation.query
org.xerial.lens.relation.query.impl
org.xerial.lens.relation.schema
org.xerial.lens.relation.schema.impl
org.xerial.lens.tree
org.xerial.silk
org.xerial.silk.cui
org.xerial.silk.hadoop
org.xerial.silk.impl
org.xerial.silk.model
org.xerial.silk.plugin
org.xerial.silk.schema
org.xerial.silk.schema.impl
org.xerial.silk.sica
org.xerial.util
org.xerial.util.antlr
org.xerial.util.bean
org.xerial.util.bean.impl
org.xerial.util.graph
org.xerial.util.impl
org.xerial.util.io
org.xerial.util.io.SevenZip
org.xerial.util.io.SevenZip.Compression.LZ
org.xerial.util.io.SevenZip.Compression.LZMA
org.xerial.util.io.SevenZip.Compression.RangeCoder
org.xerial.util.log
org.xerial.util.opt
org.xerial.util.reflect
org.xerial.util.template
org.xerial.util.text
org.xerial.util.thread
org.xerial.util.tree
org.xerial.util.tree.impl
org.xerial.util.xml
org.xerial.util.xml.analyzer
org.xerial.util.xml.dom
org.xerial.util.xml.dtd
org.xerial.util.xml.dtd.impl
org.xerial.util.xml.impl
org.xerial.util.xml.index
org.xerial.util.xml.pullparser




POM File Source

Here is the content of the POM file.

<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">
  <parent>
    <artifactId>xerial-project</artifactId>
    <groupId>org.xerial</groupId>
    <version>1.1</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <groupId>org.xerial</groupId>
  <artifactId>xerial-core</artifactId>
  <name>Xerial Core</name>
  <version>1.0.21</version>
  <description>Core library of the Xerial project.</description>


  <scm>
    <connection>scm:hg:https://core.xerial.googlecode.com/hg/</connection>
    <developerConnection>scm:hg:default</developerConnection>
  </scm>


  <build>
    <resources>
      <resource>
        <directory>src/main/java</directory>
      </resource>
      <resource>
        <directory>src/main/resources</directory>
  <excludes>
    <exclude>**/.svn/**</exclude>
  </excludes>
      </resource>
    </resources>
    <testResources>
      <testResource>
        <directory>src/test/java</directory>
      </testResource>
      <testResource>
        <directory>src/test/resources</directory>
      </testResource>
    </testResources>

    <plugins>
      <plugin>
        <groupId>org.xerial.maven</groupId>
        <artifactId>maven-antlr-plugin</artifactId>
      <version>1.3</version>
        <executions>
          <execution>
            <phase>generate-sources</phase>
            <goals>
              <goal>generate</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
        </configuration>
      </plugin>
      
      <plugin>
        <artifactId>maven-eclipse-plugin</artifactId>
        <version>2.5.1</version>
      </plugin>
      

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <configuration>
          <transformers>
            <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
              <mainClass>org.xerial.silk.cui.SilkMain</mainClass>
            </transformer>
          </transformers>
        </configuration>
        <executions>
          <execution>
            <id>make-shade</id>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <shadedArtifactAttached>true</shadedArtifactAttached>
              <shadedClassifierName>standalone</shadedClassifierName>
            </configuration>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <!--  do not run site-deploy goal, included in the default settings  -->
          <goals>deploy</goals>
          <connectionUrl>scm:hg:https://core.xerial.googlecode.com/hg/</connectionUrl>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>org.antlr</groupId>
      <artifactId>antlr</artifactId>
      <version>3.1.3</version>
    </dependency>
    <dependency>
      <groupId>xpp3</groupId>
      <artifactId>xpp3</artifactId>
      <version>1.1.4c</version>
    </dependency>
    <dependency>
      <groupId>org.xerial.thirdparty</groupId>
      <artifactId>hadoop-core</artifactId>
      <version>0.20.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.1.1</version>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>org.xerial</groupId>
      <artifactId>sqlite-jdbc</artifactId>
      <version>3.6.20</version>
      <scope>test</scope>
    </dependency>

  </dependencies>
</project>