Skip to content

Gigaspaces/mongo-datasource

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 

Build Status

Overview

Implementation for XAP mongodb persistency SpaceDataSource and SpaceSynchronizationEndpoint

Prerequisites

Build

  • Clone the project: git clone https://github.com/Gigaspaces/mongo-datasource.git
  • Navigate to the mongo-datasource project directory
  • Build project
    • without tests: mvn clean install -DskipTests
    • with tests: mvn clean surefire:test install
Notes
  • eclipse users uses m2e plugin sometimes miss synchronization its recommended to right click on mongodb-datasource project and from the menu [Maven]-> [Update project]

Repositories

<repositories>
	<repository>
		<id>org.openspaces</id>
		<name>OpenSpaces</name>
		<url>http://maven-repository.openspaces.org</url>
	</repository>

</repositories>

Dependencies

		<dependency>
		<groupId>com.gigaspaces</groupId>
		<artifactId>gs-openspaces</artifactId>
		<version>9.7.0-SNAPSHOT</version>
	</dependency>

	<!-- mongodb java driver -->
	<dependency>
		<groupId>org.mongodb</groupId>
		<artifactId>mongo-java-driver</artifactId>
		<version>3.2.0</version>
	</dependency>


	<dependency>
		<groupId>org.antlr</groupId>
		<artifactId>antlr4-runtime</artifactId>
		<version>4.0</version>
	</dependency>