Maven Repository - POM file for Library blueprints-core 2.4.0 2.4.0

Summary

Blueprints-Core.

Core interfaces and utilities for Blueprints.

Declaration

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

<dependency>
   <groupId>com.tinkerpop.blueprints</groupId>
   <artifactId>blueprints-core</artifactId>
   <version>2.4.0</version>
</dependency>

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

Depends on

The blueprints-core-2.4.0 has 4 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
XML Parserjettison 1.3.3
A StAX implementation for JSON.
8
Data Structurecommons-configuration 1.6
Tools to assist in the reading of configuration/preferences files in various formats
156




Plugin

The following plugins are used in the blueprints-core-2.4.0.jar

  1. maven-assembly-plugin

Packages

The following packages are defined in the blueprints-core-2.4.0.jar

com.tinkerpop.blueprints
com.tinkerpop.blueprints.impls.tg
com.tinkerpop.blueprints.util
com.tinkerpop.blueprints.util.io
com.tinkerpop.blueprints.util.io.gml
com.tinkerpop.blueprints.util.io.graphml
com.tinkerpop.blueprints.util.io.graphson
com.tinkerpop.blueprints.util.wrappers
com.tinkerpop.blueprints.util.wrappers.batch
com.tinkerpop.blueprints.util.wrappers.batch.cache
com.tinkerpop.blueprints.util.wrappers.event
com.tinkerpop.blueprints.util.wrappers.event.listener
com.tinkerpop.blueprints.util.wrappers.id
com.tinkerpop.blueprints.util.wrappers.partition
com.tinkerpop.blueprints.util.wrappers.readonly
com.tinkerpop.blueprints.util.wrappers.wrapped




POM File Source

Here is the content of the POM file.

<?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>
    <parent>
        <groupId>com.tinkerpop.blueprints</groupId>
        <artifactId>blueprints</artifactId>
        <version>2.4.0</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    <artifactId>blueprints-core</artifactId>
    <url>http://blueprints.tinkerpop.com</url>
    <name>Blueprints-Core</name>
    <description>Core interfaces and utilities for Blueprints</description>
    <dependencies>
        <dependency>
            <groupId>org.codehaus.jettison</groupId>
            <artifactId>jettison</artifactId>
            <version>1.3.3</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.datatype</groupId>
            <artifactId>jackson-datatype-json-org</artifactId>
            <version>2.1.2</version>
        </dependency>
        <dependency>
            <groupId>colt</groupId>
            <artifactId>colt</artifactId>
            <version>1.2.0</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>commons-configuration</groupId>
            <artifactId>commons-configuration</artifactId>
            <version>1.6</version>
        </dependency>
    </dependencies>
    <build>
        <directory>${basedir}/target</directory>
        <finalName>${project.artifactId}-${project.version}</finalName>
        <resources>
            <resource>
                <directory>${basedir}/src/main/resources
                </directory>
            </resource>
        </resources>
        <testResources>
            <testResource>
                <directory>${basedir}/src/test/resources
                </directory>
            </testResource>
        </testResources>
        <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.3</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>attached</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <attach>false</attach>
                    <descriptors>
                        <descriptor>src/assembly/distribution.xml</descriptor>
                    </descriptors>
                    <finalName>${project.artifactId}-${project.version}</finalName>
                    <outputDirectory>target</outputDirectory>
                    <workDirectory>target/assembly/work</workDirectory>
                    <tarLongFileMode>warn</tarLongFileMode>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>