You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.8 KiB
99 lines
2.8 KiB
<?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> |
|
|
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-mongodb-parent</artifactId> |
|
<version>1.3.0.RELEASE</version> |
|
<packaging>pom</packaging> |
|
|
|
<name>Spring Data MongoDB</name> |
|
<description>MongoDB support for Spring Data</description> |
|
<url>http://www.springsource.org/spring-data/mongodb</url> |
|
|
|
<parent> |
|
<groupId>org.springframework.data.build</groupId> |
|
<artifactId>spring-data-parent</artifactId> |
|
<version>1.2.0.RELEASE</version> |
|
<relativePath>../spring-data-build/parent/pom.xml</relativePath> |
|
</parent> |
|
|
|
<modules> |
|
<module>spring-data-mongodb</module> |
|
<module>spring-data-mongodb-cross-store</module> |
|
<module>spring-data-mongodb-log4j</module> |
|
<module>spring-data-mongodb-distribution</module> |
|
</modules> |
|
|
|
<properties> |
|
<project.type>multi</project.type> |
|
<dist.id>spring-data-mongodb</dist.id> |
|
<springdata.commons>1.6.0.RELEASE</springdata.commons> |
|
<mongo>2.10.1</mongo> |
|
</properties> |
|
|
|
<developers> |
|
<developer> |
|
<id>ogierke</id> |
|
<name>Oliver Gierke</name> |
|
<email>ogierke at vmware.com</email> |
|
<organization>SpringSource</organization> |
|
<organizationUrl>http://www.springsource.com</organizationUrl> |
|
<roles> |
|
<role>Project Lean</role> |
|
</roles> |
|
<timezone>+1</timezone> |
|
</developer> |
|
<developer> |
|
<id>trisberg</id> |
|
<name>Thomas Risberg</name> |
|
<email>trisberg at vmware.com</email> |
|
<organization>SpringSource</organization> |
|
<organizationUrl>http://www.springsource.com</organizationUrl> |
|
<roles> |
|
<role>Developer</role> |
|
</roles> |
|
<timezone>-5</timezone> |
|
</developer> |
|
<developer> |
|
<id>mpollack</id> |
|
<name>Mark Pollack</name> |
|
<email>mpollack at vmware.com</email> |
|
<organization>SpringSource</organization> |
|
<organizationUrl>http://www.springsource.com</organizationUrl> |
|
<roles> |
|
<role>Developer</role> |
|
</roles> |
|
<timezone>-5</timezone> |
|
</developer> |
|
<developer> |
|
<id>jbrisbin</id> |
|
<name>Jon Brisbin</name> |
|
<email>jbrisbin at vmware.com</email> |
|
<organization>SpringSource</organization> |
|
<organizationUrl>http://www.springsource.com</organizationUrl> |
|
<roles> |
|
<role>Developer</role> |
|
</roles> |
|
<timezone>-6</timezone> |
|
</developer> |
|
</developers> |
|
|
|
<dependencies> |
|
<!-- MongoDB --> |
|
<dependency> |
|
<groupId>org.mongodb</groupId> |
|
<artifactId>mongo-java-driver</artifactId> |
|
<version>${mongo}</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
<repositories> |
|
<repository> |
|
<id>spring-lib-release</id> |
|
<url>http://repo.springsource.org/libs-release-local</url> |
|
</repository> |
|
</repositories> |
|
|
|
</project>
|
|
|