ferma-orientdb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.syncleus.ferma</groupId> <artifactId>ferma-orientdb</artifactId> <version>3.0.1</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.syncleus</groupId> <artifactId>syncleus</artifactId> <version>6</version> </parent> <groupId>com.syncleus.ferma</groupId> <artifactId>ferma-orientdb</artifactId> <packaging>jar</packaging> <version>3.0.1</version> <prerequisites> <maven>3.0.4</maven> </prerequisites> <name>Ferma OrientDB Extension</name> <description>An OrientDB extension for the Ferma ORM</description> <url>https://github.com/Syncleus/ferma-orientdb.git</url> <properties> <ferma.version>3.3.0</ferma.version> <orientdb.version>3.0.1</orientdb.version> </properties> <licenses> <license> <name>Apache Software License version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>Syncleus</name> <url>http://www.syncleus.com</url> </organization> <scm> <connection>scm:git:https://github.com/Syncleus/ferma-orientdb</connection> <developerConnection>scm:git:ssh://github.com/Syncleus/ferma-orientdb</developerConnection> <url>https://github.com/Syncleus/ferma-orientdb.git</url> <tag>v3.0.1</tag> </scm> <ciManagement> <system>travis</system> <url>https://travis-ci.org/Syncleus/ferma-orientdb/</url> </ciManagement> <issueManagement> <system>GitHub</system> <url>https://github.com/Syncleus/ferma-orientdb/issues</url> </issueManagement> <mailingLists> <mailingList> <name>Syncleus Announcements</name> <subscribe>syncleus-announce-list+subscribe@syncleus.com</subscribe> <unsubscribe>syncleus-announce-list+unsubscribe@syncleus.com</unsubscribe> <post>syncleus-announce-list@syncleus.com</post> <archive>https://groups.google.com/a/syncleus.com/forum/#!forum/syncleus-announce-list</archive> </mailingList> <mailingList> <name>Syncleus Development</name> <subscribe>syncleus-dev-list+subscribe@syncleus.com</subscribe> <unsubscribe>syncleus-dev-list+unsubscribe@syncleus.com</unsubscribe> <post>syncleus-dev-list@syncleus.com</post> <archive>https://groups.google.com/a/syncleus.com/forum/#!forum/syncleus-dev-list</archive> </mailingList> <mailingList> <name>Ferma</name> <subscribe>ferma-list+subscribe@syncleus.com</subscribe> <unsubscribe>ferma-list+unsubscribe@syncleus.com</unsubscribe> <post>ferma-list@syncleus.com</post> <archive>https://groups.google.com/a/syncleus.com/forum/#!forum/ferma-list</archive> </mailingList> </mailingLists> <developers> <developer> <id>JeffreyPhillipsFreeman</id> <name>Jeffrey Phillips Freeman</name> <email>Jeffrey.Freeman@Syncleus.com</email> <url>http://JeffreyFreeman.me</url> <organization>Syncleus</organization> <organizationUrl>http://www.syncleus.com</organizationUrl> <roles> <role>Chief Technology Officer</role> <role>Project Owner</role> <role>Developer</role> </roles> <timezone>-5</timezone> </developer> </developers> <contributors> <contributor> <name>Johannes Schüth</name> <email>j.schueth@jotschi.de</email> <roles> <role>Developer</role> </roles> </contributor> </contributors> <repositories> <repository> <id>ossrh.snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <dependencies> <dependency> <groupId>com.syncleus.ferma</groupId> <artifactId>ferma</artifactId> <version>${ferma.version}</version> </dependency> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-core</artifactId> <version>${orientdb.version}</version> </dependency> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-graphdb</artifactId> <version>${orientdb.version}</version> </dependency> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-gremlin</artifactId> <version>${orientdb.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.5</version> <scope>test</scope> </dependency> </dependencies> <build> <defaultGoal>package</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.10.b1</version> <configuration> <skipExistingHeaders>false</skipExistingHeaders> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> </reporting> <profiles> <profile> <id>sign</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <configuration> <keyname>8762A2BFD91F0468</keyname> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>