Remove the spring-data-gemfire-test module.
Remove support for VMware Tanzu (Pivotal) GemFire.
This commit is contained in:
1
pom.xml
1
pom.xml
@@ -18,7 +18,6 @@
|
||||
|
||||
<modules>
|
||||
<module>spring-data-geode-test</module>
|
||||
<module>spring-data-gemfire-test</module>
|
||||
</modules>
|
||||
|
||||
<name>Spring Test Framework for Apache Geode and VMware Tanzu GemFire</name>
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
apply plugin: 'io.spring.convention.spring-module'
|
||||
apply from: MAVEN_POM_EDITOR_GRADLE
|
||||
|
||||
description = "Spring Test Framework for VMware Tanzu GemFire"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile(project(':spring-data-geode-test')) {
|
||||
exclude group: "org.springframework.data", module: "spring-data-geode"
|
||||
}
|
||||
|
||||
compile "org.springframework.data:spring-data-gemfire"
|
||||
|
||||
}
|
||||
@@ -1,87 +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-test-data-geode-build</artifactId>
|
||||
<version>0.0.21-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>spring-data-gemfire-test</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>Spring Test Framework for VMware Tanzu GemFire</name>
|
||||
<description>
|
||||
Module using Spring Framework's TestContext to write both Unit and Integration Tests
|
||||
for Spring Data for VMware Tanzu GemFire applications.
|
||||
</description>
|
||||
<url>https://github.com/jxblum/spring-data-tests-4-gemfire</url>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License, Version 2.0</name>
|
||||
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
||||
<comments>
|
||||
Copyright 2018-present the original author or authors.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
https://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
</comments>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<organization>
|
||||
<name>Pivotal Software, Inc.</name>
|
||||
<url>https://www.pivotal.io</url>
|
||||
</organization>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>jblum</id>
|
||||
<name>John Blum</name>
|
||||
<email>jblum at pivotal dot io</email>
|
||||
<organization>Pivotal Software, Inc.</organization>
|
||||
<organizationUrl>https://www.spring.io</organizationUrl>
|
||||
<roles>
|
||||
<role>Spring Data Engineer</role>
|
||||
<role>Apache Geode Committer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-geode-test</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-geode</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-gemfire</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user