graphene-root
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.deephacks</groupId>
<artifactId>graphene-root</artifactId>
<version>0.2.2</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.deephacks</groupId>
<artifactId>graphene-root</artifactId>
<name>graphene</name>
<packaging>pom</packaging>
<version>0.2.2</version>
<description>Simple Persistence Framework.</description>
<url>http://graphene.deephacks.org</url>
<inceptionYear>2013</inceptionYear>
<mailingLists>
<mailingList>
<name>Development List</name>
<post>graphene-dev@googlegroups.com</post>
</mailingList>
<mailingList>
<name>User List</name>
<post>graphene-user@googlegroups.com</post>
</mailingList>
</mailingLists>
<issueManagement>
<system>github</system>
<url>https://github.com/deephacks/graphene/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git@github.com:deephacks/graphene.git</connection>
<developerConnection>scm:git:git@github.com:deephacks/graphene.git</developerConnection>
<url>scm:git:git@github.com/deephacks/graphene</url>
</scm>
<licenses>
<license>
<name>Apache License</name>
<url>license.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Kristoffer Sjogren</name>
<id>krisskross</id>
<email>stoffe -at- gmail.com</email>
<organization />
<roles>
<role>Developer</role>
</roles>
<url>http://stoffe.deephacks.org/</url>
<timezone>+1</timezone>
</developer>
</developers>
<properties>
<version.graphene>0.1.0</version.graphene>
<!-- plugins -->
<version.surefire-plugin>2.10</version.surefire-plugin>
<version.eclipse-plugin>2.8</version.eclipse-plugin>
<version.compiler-plugin>2.3.2</version.compiler-plugin>
<version.jar-plugin>2.3.2</version.jar-plugin>
<version.javadoc-plugin>2.9.1</version.javadoc-plugin>
<version.findbugs-plugin>2.4.0-SNAPSHOT</version.findbugs-plugin>
<version.source-plugin>2.1.2</version.source-plugin>
<!-- provided -->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>core</module>
<module>cdi</module>
<module>examples</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.6.3.201306030806</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>${version.compiler-plugin}</version>
<configuration>
<showDeprecation>false</showDeprecation>
<showWarnings>true</showWarnings>
<optimize>true</optimize>
<fork>true</fork>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>${version.jar-plugin}</version>
<configuration>
<archive>
<manifestEntries>
<Specification-Title>${project.name}</Specification-Title>
<Specification-Version>${project.version}</Specification-Version>
<Specification-Vendor>deephacks</Specification-Vendor>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>deephacks</Implementation-Vendor>
<Implementation-Vendor-Id>org.deephacks</Implementation-Vendor-Id>
<url>http://graphene.deephacks.org</url>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<!-- attach source files to the eclipse project -->
<artifactId>maven-eclipse-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>${version.eclipse-plugin}</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
<outputDirectory>eclipse-out/target</outputDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>${version.surefire-plugin}</version>
<configuration>
<trimStackTrace>false</trimStackTrace>
<printSummary>true</printSummary>
<useFile>true</useFile>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<includes>
<include>**/*TestCase.java</include>
<include>**/*TestSuite.java</include>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${version.source-plugin}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>maven2</id>
<name>Maven Central Repository</name>
<layout>default</layout>
<url>http://repo2.maven.org/maven2</url>
</repository>
<repository>
<id>jboss-groups</id>
<name>JBoss Group Repsitory</name>
<layout>default</layout>
<url>http://repository.jboss.org/nexus/content/groups/public</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.deephacks</groupId>
<artifactId>graphene-core</artifactId>
<version>${version.graphene}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.deephacks</groupId>
<artifactId>graphene-cdi</artifactId>
<version>${version.graphene}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>graphene-cdi</artifactId>
<version>${version.graphene}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>14.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.1.0.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sleepycat</groupId>
<artifactId>je</artifactId>
<version>5.0.73</version>
<scope>compile</scope>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>sign-artifacts</id>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>${version.javadoc-plugin}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
<execution>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
<configuration>
<verbose>false</verbose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>