Skip to content

Commit

Permalink
updated plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
albogdano committed Oct 28, 2024
1 parent ac971bb commit 9df34c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
import java.util.Map;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

Expand Down Expand Up @@ -317,6 +317,7 @@ public void testGetCount() {
@Test
public void testPaginationAndSorting() {
Pager pager = new Pager(2);
pager.setSortby("_docid");
List<User> page1 = s.findQuery(u.getType(), "type:user", pager);
pager.setPage(2);
List<User> page2 = s.findQuery(u.getType(), "type:user", pager);
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@
<httpClientVer>5.3.1</httpClientVer>
<httpCoreVer>5.2.4</httpCoreVer>
<commonsCodecVer>1.16.1</commonsCodecVer>
<lucenePluginVer>1.48.1</lucenePluginVer>
<sqlPluginVer>1.48.1</sqlPluginVer>
<lucenePluginVer>1.49.0</lucenePluginVer>
<sqlPluginVer>1.49.0</sqlPluginVer>
<junitVer>5.11.2</junitVer>
<junitPlatformVer>1.10.2</junitPlatformVer>
</properties>
Expand Down Expand Up @@ -167,7 +167,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<release>17</release>
<release>21</release>
<compilerArgument>-Xlint:-options</compilerArgument>
<encoding>UTF-8</encoding>
<showWarnings>true</showWarnings>
Expand Down

0 comments on commit 9df34c1

Please sign in to comment.