Skip to content

Commit a3aa89d

Browse files
committed
Upgraded to Java 13
1 parent a7b604c commit a3aa89d

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Feature requests are always welcome. Just open an issue. Really, don't hesitate.
77

88
If you are completely lost or have no idea how to use this library (or both), feel free to [contact me](mailto:[email protected]). I would be happy to assist you with any problems you might have.
99

10-
**Please note:** This is a Java 11 library. Make sure you have Java 11 installed when using this library. This library is not suitable for projects requiring complex SQL queries, although it does offer some advanced features.\
10+
**Please note:** This is a Java 13 library. Make sure you have Java 13 installed when using this library. This library is not suitable for projects requiring complex SQL queries, although it does offer some advanced features.\
1111
It is meant for projects which want to interact with their database in a simple, but easy way, without bloating the source code with SQL queries.
1212

1313
## Introduction
@@ -20,7 +20,7 @@ Include the Maven artifact:
2020
<dependency>
2121
<groupId>com.github.collinalpert</groupId>
2222
<artifactId>java2db</artifactId>
23-
<version>5.1.2</version>
23+
<version>5.2</version>
2424
</dependency>
2525
```
2626
Or include the [JAR](https://github.com/CollinAlpert/Java2DB/releases/latest) in your project.

pom.xml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.collinalpert</groupId>
88
<artifactId>java2db</artifactId>
9-
<version>5.1.2</version>
9+
<version>5.2</version>
1010
<packaging>jar</packaging>
1111

1212
<name>Java2DB</name>
@@ -50,8 +50,9 @@
5050
</distributionManagement>
5151

5252
<properties>
53-
<java-version>11</java-version>
53+
<java-version>13</java-version>
5454
<jdk.version>${java-version}</jdk.version>
55+
<maven.compiler.release>${java-version}</maven.compiler.release>
5556
<maven.compiler.source>${java-version}</maven.compiler.source>
5657
<maven.compiler.target>${java-version}</maven.compiler.target>
5758
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -61,19 +62,19 @@
6162
<dependency>
6263
<groupId>com.github.collinalpert</groupId>
6364
<artifactId>lambda2sql</artifactId>
64-
<version>2.1.4</version>
65+
<version>2.2</version>
6566
</dependency>
6667

6768
<dependency>
6869
<groupId>mysql</groupId>
6970
<artifactId>mysql-connector-java</artifactId>
70-
<version>8.0.16</version>
71+
<version>8.0.18</version>
7172
</dependency>
7273

7374
<dependency>
7475
<groupId>org.junit.jupiter</groupId>
7576
<artifactId>junit-jupiter-api</artifactId>
76-
<version>5.5.1</version>
77+
<version>5.5.2</version>
7778
<scope>test</scope>
7879
</dependency>
7980
</dependencies>
@@ -95,7 +96,7 @@
9596
<plugin>
9697
<groupId>org.apache.maven.plugins</groupId>
9798
<artifactId>maven-source-plugin</artifactId>
98-
<version>3.1.0</version>
99+
<version>3.2.0</version>
99100
<executions>
100101
<execution>
101102
<id>attach-sources</id>
@@ -138,7 +139,7 @@
138139
<plugin>
139140
<groupId>org.apache.maven.plugins</groupId>
140141
<artifactId>maven-assembly-plugin</artifactId>
141-
<version>3.1.1</version>
142+
<version>3.2.0</version>
142143
<executions>
143144
<execution>
144145
<phase>package</phase>

src/main/java/com/github/collinalpert/java2db/queries/SingleEntityProjectionQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package com.github.collinalpert.java2db.queries;
22

3+
import com.github.collinalpert.expressions.expression.LambdaExpression;
34
import com.github.collinalpert.java2db.database.DBConnection;
45
import com.github.collinalpert.java2db.entities.BaseEntity;
56
import com.github.collinalpert.lambda2sql.Lambda2Sql;
67
import com.github.collinalpert.lambda2sql.functions.SqlFunction;
7-
import com.trigersoft.jaque.expression.LambdaExpression;
88

99
import java.sql.SQLException;
1010
import java.util.Optional;

0 commit comments

Comments
 (0)