DATAGEODE-322 - Remove spring-data-gemfire module.

Since VMware is not longer releasing standalong VMware Tanzue GemFire versions based on Apache Geode after GemFire 9.10.x/Geode 1.12.0, then it is not feasible to ship a spring-data-gemfire artifact based on the SDG codebase as the Apache Geode project/product evolves.  VMware Tanzu (Pivotal) GemFire 9.10.x will be the last version released/shipped by VMware and is based on Apache Geode 1.12.0.
This commit is contained in:
John Blum
2020-09-10 12:30:04 -07:00
parent 38c74f5300
commit f088aeb5dd
2 changed files with 0 additions and 93 deletions

View File

@@ -37,7 +37,6 @@
<modules>
<module>spring-data-geode</module>
<module>spring-data-gemfire</module>
<module>spring-data-geode-distribution</module>
</modules>

View File

@@ -1,92 +0,0 @@
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-geode-parent</artifactId>
<version>2.4.0-SNAPSHOT</version>
</parent>
<artifactId>spring-data-gemfire</artifactId>
<packaging>jar</packaging>
<name>Spring Data for Pivotal GemFire</name>
<description>Spring Data for Pivotal GemFire (a.k.a. Spring Data GemFire or SDG)</description>
<url>https://projects.spring.io/spring-data-geode/spring-data-gemfire</url>
<properties>
<gemfire.version>9.10.2</gemfire.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-geode</artifactId>
<version>${project.parent.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.geode</groupId>
<artifactId>geode-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.geode</groupId>
<artifactId>geode-cq</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.geode</groupId>
<artifactId>geode-lucene</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.geode</groupId>
<artifactId>geode-wan</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Pivotal GemFire -->
<dependency>
<groupId>io.pivotal.gemfire</groupId>
<artifactId>geode-core</artifactId>
<version>${gemfire.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jcl</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jul</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.pivotal.gemfire</groupId>
<artifactId>geode-cq</artifactId>
<version>${gemfire.version}</version>
</dependency>
<dependency>
<groupId>io.pivotal.gemfire</groupId>
<artifactId>geode-lucene</artifactId>
<version>${gemfire.version}</version>
</dependency>
<dependency>
<groupId>io.pivotal.gemfire</groupId>
<artifactId>geode-wan</artifactId>
<version>${gemfire.version}</version>
</dependency>
</dependencies>
</project>