You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by il...@apache.org on 2019/12/26 11:31:29 UTC

[ignite] branch master updated: IGNITE-12259 Fix build.

This is an automated email from the ASF dual-hosted git repository.

ilyak pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new b0e34f0  IGNITE-12259 Fix build.
b0e34f0 is described below

commit b0e34f08d9db713b253657aeda10f087e1f15e84
Author: Ilya Kasnacheev <il...@gmail.com>
AuthorDate: Thu Dec 26 14:24:06 2019 +0300

    IGNITE-12259 Fix build.
---
 modules/spring-data-2.2/pom.xml                    |  2 +-
 .../testsuites/IgniteSpringData2TestSuite.java     | 34 ----------------------
 2 files changed, 1 insertion(+), 35 deletions(-)

diff --git a/modules/spring-data-2.2/pom.xml b/modules/spring-data-2.2/pom.xml
index 2456894..404286e 100644
--- a/modules/spring-data-2.2/pom.xml
+++ b/modules/spring-data-2.2/pom.xml
@@ -31,7 +31,7 @@
     </parent>
 
     <artifactId>ignite-spring-data_2.2</artifactId>
-    <version>2.8.0-SNAPSHOT</version>
+    <version>2.9.0-SNAPSHOT</version>
     <url>http://ignite.apache.org</url>
 
     <dependencies>
diff --git a/modules/spring-data-2.2/src/test/java/org/apache/ignite/testsuites/IgniteSpringData2TestSuite.java b/modules/spring-data-2.2/src/test/java/org/apache/ignite/testsuites/IgniteSpringData2TestSuite.java
deleted file mode 100644
index 9a5b9f9..0000000
--- a/modules/spring-data-2.2/src/test/java/org/apache/ignite/testsuites/IgniteSpringData2TestSuite.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You 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
- *
- *      http://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.
- */
-
-package org.apache.ignite.testsuites;
-
-import org.apache.ignite.springdata.IgniteSpringDataCrudSelfTest;
-import org.apache.ignite.springdata.IgniteSpringDataQueriesSelfTest;
-import org.junit.runner.RunWith;
-import org.junit.runners.Suite;
-
-/**
- * Ignite Spring Data 2.2 test suite.
- */
-@RunWith(Suite.class)
-@Suite.SuiteClasses({
-    IgniteSpringDataCrudSelfTest.class,
-    IgniteSpringDataQueriesSelfTest.class
-})
-public class IgniteSpringData2TestSuite {
-}