Download frames-2.5.0.jar file

Introduction

You can download frames-2.5.0.jar in this page.

License

BSD 3-Clause

Type List

frames-2.5.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.tinkerpop/frames/pom.properties
META-INF/maven/com.tinkerpop/frames/pom.xml
com.tinkerpop.frames.Adjacency.class
com.tinkerpop.frames.ClassUtilities.class
com.tinkerpop.frames.Domain.class
com.tinkerpop.frames.EdgeFrame.class
com.tinkerpop.frames.FrameInitializer.class
com.tinkerpop.frames.FramedElement.class
com.tinkerpop.frames.FramedGraph.class
com.tinkerpop.frames.FramedGraphConfiguration.class
com.tinkerpop.frames.FramedGraphFactory.class
com.tinkerpop.frames.FramedGraphQuery.class
com.tinkerpop.frames.FramedTransactionalGraph.class
com.tinkerpop.frames.InVertex.class
com.tinkerpop.frames.Incidence.class
com.tinkerpop.frames.OutVertex.class
com.tinkerpop.frames.Property.class
com.tinkerpop.frames.Range.class
com.tinkerpop.frames.UnhandledMethodException.class
com.tinkerpop.frames.VertexFrame.class
com.tinkerpop.frames.annotations.AdjacencyAnnotationHandler.class
com.tinkerpop.frames.annotations.AnnotationHandler.class
com.tinkerpop.frames.annotations.DomainAnnotationHandler.class
com.tinkerpop.frames.annotations.InVertexAnnotationHandler.class
com.tinkerpop.frames.annotations.IncidenceAnnotationHandler.class
com.tinkerpop.frames.annotations.OutVertexAnnotationHandler.class
com.tinkerpop.frames.annotations.PropertyAnnotationHandler.class
com.tinkerpop.frames.annotations.RangeAnnotationHandler.class
com.tinkerpop.frames.annotations.gremlin.GremlinGroovy.class
com.tinkerpop.frames.annotations.gremlin.GremlinGroovyAnnotationHandler.class
com.tinkerpop.frames.annotations.gremlin.GremlinParam.class
com.tinkerpop.frames.core.FramedGraphQueryImpl.class
com.tinkerpop.frames.modules.AbstractModule.class
com.tinkerpop.frames.modules.MethodHandler.class
com.tinkerpop.frames.modules.Module.class
com.tinkerpop.frames.modules.TypeResolver.class
com.tinkerpop.frames.modules.gremlingroovy.GremlinGroovyModule.class
com.tinkerpop.frames.modules.javahandler.Initializer.class
com.tinkerpop.frames.modules.javahandler.JavaFrameInitializer.class
com.tinkerpop.frames.modules.javahandler.JavaHandler.class
com.tinkerpop.frames.modules.javahandler.JavaHandlerClass.class
com.tinkerpop.frames.modules.javahandler.JavaHandlerContext.class
com.tinkerpop.frames.modules.javahandler.JavaHandlerContextImpl.class
com.tinkerpop.frames.modules.javahandler.JavaHandlerException.class
com.tinkerpop.frames.modules.javahandler.JavaHandlerFactory.class
com.tinkerpop.frames.modules.javahandler.JavaHandlerModule.class
com.tinkerpop.frames.modules.javahandler.JavaMethodHandler.class
com.tinkerpop.frames.modules.typedgraph.TypeField.class
com.tinkerpop.frames.modules.typedgraph.TypeManager.class
com.tinkerpop.frames.modules.typedgraph.TypeRegistry.class
com.tinkerpop.frames.modules.typedgraph.TypeValue.class
com.tinkerpop.frames.modules.typedgraph.TypedGraphModuleBuilder.class
com.tinkerpop.frames.structures.FramedEdgeIterable.class
com.tinkerpop.frames.structures.FramedVertexIterable.class
com.tinkerpop.frames.structures.FramedVertexMap.class
com.tinkerpop.frames.structures.FramedVertexSet.class
com.tinkerpop.frames.util.ExceptionUtils.class
com.tinkerpop.frames.util.Validate.class

Pom

frames-2.5.0.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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
    <groupId>com.tinkerpop</groupId>
    <artifactId>frames</artifactId>
    <version>2.5.0</version>
    <packaging>jar</packaging>
    <url>http://frames.tinkerpop.com</url>
    <name>Frames: An Object to Graph Framework</name>
    <description>
        Frames is a framework for exposing the elements of a Blueprints graph as Java objects.
        Instead of writing software in terms of vertices and edges, with Frames,
        software is written in terms of domain objects and their relationships to each other.
    </description>
    <developers>
        <developer>
            <name>Marko A. Rodriguez</name>
            <email>marko@markorodriguez.com</email>
            <url>http://markorodriguez.com</url>
        </developer>
        <developer>
            <name>Joshua Shinavier</name>
            <email>josh@fortytwo.net</email>
            <url>http://fortytwo.net</url>
        </developer>
        <developer>
            <name>Bryn Cooke</name>
            <email>bryn@jglue.org</email>
            <url>http://jglue.org</url>
        </developer>
    </developers>
    <inceptionYear>2011</inceptionYear>
    <licenses>
        <license>
            <name>BSD 3-Clause</name>
            <url>http://www.opensource.org/licenses/BSD-3-Clause</url>
        </license>
    </licenses>
    <scm>
        <connection>scm:git:git@github.com:tinkerpop/frames.git</connection>
        <developerConnection>scm:git:git@github.com:tinkerpop/frames.git</developerConnection>
        <url>git@github.com:tinkerpop/frames.git</url>
    </scm>

    <properties>
        <tinkerpop.version>2.5.0</tinkerpop.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.tinkerpop.blueprints</groupId>
            <artifactId>blueprints-core</artifactId>
            <version>${tinkerpop.version}</version>
        </dependency>
        <dependency>
            <groupId>com.tinkerpop.gremlin</groupId>
            <artifactId>gremlin-groovy</artifactId>
            <version>${tinkerpop.version}</version>
        </dependency>
        <!-- TEST -->
        <dependency>
            <groupId>com.tinkerpop.blueprints</groupId>
            <artifactId>blueprints-sail-graph</artifactId>
            <version>${tinkerpop.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.tinkerpop.blueprints</groupId>
            <artifactId>blueprints-test</artifactId>
            <version>${tinkerpop.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.9.5</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.javassist</groupId>
            <artifactId>javassist</artifactId>
            <version>3.18.0-GA</version>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>14.0.1</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-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-enforcer-plugin</artifactId>
                <version>1.3.1</version>
                <executions>
                    <execution>
                        <id>enforce-dependency-convergence</id>
                        <goals>
                            <goal>enforce</goal>
                        </goals>
                        <configuration>
                            <rules>
                                <DependencyConvergence />
                            </rules>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <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>frames-${project.version}</finalName>
                    <outputDirectory>target</outputDirectory>
                    <workDirectory>target/assembly/work</workDirectory>
                    <tarLongFileMode>warn</tarLongFileMode>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.4.2</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.1.2</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.8</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>1.4</version>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

<dependency>
   <groupId>com.tinkerpop</groupId>
   <artifactId>frames</artifactId>
   <version>2.5.0</version>
</dependency>

Download

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



Download frames-2.5.0.jar file




PreviousNext

Related