Skip to content

Commit

Permalink
Merge pull request mybatis#1928 from hazendaz/copyright
Browse files Browse the repository at this point in the history
[ci] Disable jdk 15 due to bundle plugin support outstanding / sort imports / remove unused import
  • Loading branch information
hazendaz authored May 16, 2020
2 parents 45846b0 + c43e29c commit c67c2db
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
language: java

jdk:
- openjdk15
# JDK15 is blocked due to maven-bundle-plugin and underlying bnd (see https://issues.apache.org/jira/browse/FELIX-6259)
#- openjdk15
- openjdk14
- openjdk13
- openjdk11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import java.sql.Connection;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
*/
package org.apache.ibatis.submitted.param_name_resolve;

import static org.junit.Assert.assertEquals;

import java.io.Reader;
import java.sql.Connection;
import java.util.Arrays;
import java.util.List;

import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.jdbc.ScriptRunner;
Expand All @@ -24,13 +31,6 @@
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;

import java.io.Reader;
import java.sql.Connection;
import java.util.Arrays;
import java.util.List;

import static org.junit.Assert.assertEquals;

class ActualParamNameTest {

private static SqlSessionFactory sqlSessionFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@
*/
package org.apache.ibatis.submitted.param_name_resolve;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

import java.io.Reader;
import java.sql.Connection;
import java.util.Arrays;
import java.util.List;

import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.exceptions.PersistenceException;
import org.apache.ibatis.io.Resources;
Expand All @@ -25,14 +33,6 @@
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;

import java.io.Reader;
import java.sql.Connection;
import java.util.Arrays;
import java.util.List;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

class NoActualParamNameTest {

private static SqlSessionFactory sqlSessionFactory;
Expand Down

0 comments on commit c67c2db

Please sign in to comment.