morphia-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.google.code.morphia</groupId>
<artifactId>morphia-parent</artifactId>
<version>0.104</version>
</dependency><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>com.google.code.morphia</groupId>
<artifactId>morphia-parent</artifactId>
<version>0.104</version>
<packaging>pom</packaging>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<name>Morphia Build</name>
<description>Build Project for Morphia</description>
<url>https://github.com/mongodb/morphia</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/mongodb/morphia.git</connection>
<developerConnection>scm:git:git@github.com:mongodb/morphia.git</developerConnection>
<url>https://github.com/mongodb/morphia.git</url>
<tag>0.104</tag>
</scm>
<developers>
<developer>
<id>oli.gauti</id>
<name>Olafur Gauti Gudmundsson</name>
</developer>
<developer>
<id>scotthernandez</id>
<name>Scott Hernandez</name>
<email>scotthernandez (hot/g mail)</email>
</developer>
<developer>
<id>us@thomas-daily.de</id>
<name>Uwe Schäfer</name>
</developer>
<developer>
<id>jyemin</id>
<name>Jeff Yemin</name>
<email>jeff.yemin@gmail.com</email>
</developer>
</developers>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.5.6</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<defaultGoal>install</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.1.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>UTF-8</encoding>
<excludes>
<exclude>**/emul/**/*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>src/etc/header.txt</header>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</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.7</version>
<configuration>
<show>public</show>
<author>false</author>
<encoding>UTF-8</encoding>
<quiet>true</quiet>
</configuration>
<executions>
<execution>
<goals>
<goal>javadoc</goal>
<goal>jar</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
<show>public</show>
<author>false</author>
<encoding>UTF-8</encoding>
<quiet>true</quiet>
</configuration>
<reportSets>
<reportSet>
<id>default</id>
<configuration>
</configuration>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>${java-driver.version}</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>2.x</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>3.x</id>
<activation>
<property>
<name>driver_version</name>
<value>3.0.x</value>
</property>
</activation>
<properties>
<java-driver.version>3.0.0-SNAPSHOT</java-driver.version>
</properties>
</profile>
</profiles>
<modules>
<module>morphia</module>
<module>no-proxy-deps-tests</module>
<module>validation</module>
<module>logging-slf4j</module>
<module>jrebel-plug</module>
<module>guice-plug</module>
<module>entityscanner-plug</module>
<module>gwt</module>
</modules>
<properties>
<slf4j.version>1.5.6</slf4j.version>
<java-driver.version>[2.10.1,2.11.2]</java-driver.version>
</properties>
</project>