simple-orm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.v5analytics.simpleorm</groupId>
<artifactId>simple-orm</artifactId>
<version>1.3.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>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.v5analytics.simpleorm</groupId>
<artifactId>simple-orm</artifactId>
<version>1.3.1</version>
<name>Simple ORM</name>
<packaging>pom</packaging>
<description>Simple ORM for Accumulo and SQL</description>
<url>http://v5analytics.com</url>
<inceptionYear>2015</inceptionYear>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>scm:git:git@github.com:v5analytics/simple-orm.git</url>
<connection>scm:git:git@github.com:v5analytics/simple-orm.git</connection>
<developerConnection>scm:git:git@github.com:v5analytics/simple-orm.git</developerConnection>
<tag>simple-orm-1.3.1</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/v5analytics/simple-orm/issues</url>
</issueManagement>
<developers>
<developer>
<name>Joe Ferner</name>
<url>https://github.com/joeferner</url>
<timezone>-5</timezone>
<email>joe.ferner@v5analytics.com</email>
</developer>
</developers>
<properties>
<java.compiler.showWarnings>true</java.compiler.showWarnings>
<java.source.version>1.7</java.source.version>
<java.target.version>1.7</java.target.version>
<accumulo.version>1.7.2</accumulo.version>
<commons.lang.version>2.5</commons.lang.version>
<commons.io.version>2.4</commons.io.version>
<json.version>20131018</json.version>
<guava.version>17.0</guava.version>
<zookeeper.version>3.4.9</zookeeper.version>
<slf4j.version>1.7.10</slf4j.version>
<junit.version>4.11</junit.version>
<h2.version>1.4.191</h2.version>
<HikariCP.version>2.4.6</HikariCP.version>
<maven.plugin.gpg.version>1.4</maven.plugin.gpg.version>
<maven.plugin.javadoc.version>2.9.1</maven.plugin.javadoc.version>
<maven.plugin.source.version>2.2.1</maven.plugin.source.version>
<maven.plugin.compiler.version>3.1</maven.plugin.compiler.version>
<maven.plugin.plugin.version>3.2</maven.plugin.plugin.version>
<maven.plugin.release.version>2.5</maven.plugin.release.version>
<maven.plugin.scm.version>1.8.1</maven.plugin.scm.version>
<maven.plugin.surefire.version>2.16</maven.plugin.surefire.version>
<maven-surefire-plugin.version>2.4.2</maven-surefire-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons.lang.version}</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${json.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>${zookeeper.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<dependency>
<groupId>org.apache.accumulo</groupId>
<artifactId>accumulo-core</artifactId>
<version>${accumulo.version}</version>
</dependency>
<dependency>
<groupId>org.apache.accumulo</groupId>
<artifactId>accumulo-minicluster</artifactId>
<version>${accumulo.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>${maven.plugin.scm.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.plugin.compiler.version}</version>
<configuration>
<source>${java.source.version}</source>
<target>${java.target.version}</target>
<showWarnings>${java.compiler.showWarnings}</showWarnings>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.plugin.source.version}</version>
<executions>
<execution>
<id>source-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.plugin.javadoc.version}</version>
<executions>
<execution>
<id>javadocs-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven.plugin.release.version}</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-Psonatype-oss-release</arguments>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-api</artifactId>
<version>${maven.plugin.scm.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>${maven.plugin.scm.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>core</module>
<module>accumulo</module>
<module>sql</module>
<module>jetty-session-manager</module>
<module>spring-session-repository</module>
<module>in-memory</module>
<module>test</module>
</modules>
<profiles>
<profile>
<id>release-tasks</id>
<activation>
<!-- mvn release:perform sets this to true -->
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.plugin.gpg.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>test</id>
<activation>
<property>
<name>test</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<skipTests>false</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>