spring-data-marklogic
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.4dconcept.springframework.data</groupId>
<artifactId>spring-data-marklogic</artifactId>
<version>2.1.3.RELEASE</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.4dconcept.springframework.data</groupId>
<artifactId>spring-data-marklogic</artifactId>
<version>2.1.3.RELEASE</version>
<name>Spring Data Marklogic</name>
<url>https://github.com/stoussaint/spring-data-marklogic</url>
<description>Marklogic support for Spring Data</description>
<organization>
<name>4DConcept</name>
<url>http://www.4dconcept.com/en</url>
</organization>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/stoussaint/spring-data-marklogic/issues</url>
</issueManagement>
<scm>
<url>https://github.com/stoussaint/spring-data-marklogic</url>
<connection>scm:git:git://github.com/stoussaint/spring-data-marklogic.git</connection>
<developerConnection>scm:git:git@github.com:stoussaint/spring-data-marklogic.git</developerConnection>
</scm>
<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>
<repositories>
<repository>
<id>maven2-repository.com.marklogic.developer</id>
<name>Marklogic Maven Repository</name>
<url>http://developer.marklogic.com/maven2</url>
</repository>
</repositories>
<developers>
<developer>
<id>stoussaint</id>
<name>Stéphane Toussaint</name>
<email>stephane.toussaint@4dconcept.fr</email>
</developer>
<developer>
<id>sktifa</id>
<name>Sahbi Ktifa</name>
<email>sahbi.ktifa@4dconcept.fr</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.marklogic</groupId>
<artifactId>marklogic-xcc</artifactId>
<version>9.0.13</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>javax.transaction-api</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.5.1</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
</project>