Skip to content

Commit 4de4037

Browse files
committed
Downgraded to Java 10 until Java 11 is more common.
1 parent 1125b59 commit 4de4037

File tree

2 files changed

+29
-6
lines changed

2 files changed

+29
-6
lines changed

README.MD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Lambda2sql (lambda) -> "sql"
22
==========
33

4-
**Please note:** This is a Java 11 library so make sure you have at least Java 11 installed when using it.
4+
**Please note:** This is a Java 10 library so make sure you have at least Java 10 installed when using it.
55

66
Convert Java 8 lambdas to SQL statements.
77

@@ -56,7 +56,7 @@ You can include the Maven dependency:
5656
<dependency>
5757
<groupId>com.github.collinalpert</groupId>
5858
<artifactId>lambda2sql</artifactId>
59-
<version>1.6.4</version>
59+
<version>1.6.5</version>
6060
</dependency>
6161
```
6262

pom.xml

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

77
<groupId>com.github.collinalpert</groupId>
88
<artifactId>lambda2sql</artifactId>
9-
<version>1.6.4</version>
9+
<version>1.6.5</version>
1010
<packaging>jar</packaging>
1111

1212
<name>lambda2sql</name>
@@ -37,10 +37,21 @@
3737
<url>http://github.com/CollinAlpert/lambda2sql/tree/master</url>
3838
</scm>
3939

40+
<distributionManagement>
41+
<snapshotRepository>
42+
<id>ossrh</id>
43+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
44+
</snapshotRepository>
45+
<repository>
46+
<id>ossrh</id>
47+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
48+
</repository>
49+
</distributionManagement>
50+
4051
<properties>
41-
<jdk.version>11</jdk.version>
42-
<maven.compiler.source>11</maven.compiler.source>
43-
<maven.compiler.target>11</maven.compiler.target>
52+
<jdk.version>10</jdk.version>
53+
<maven.compiler.source>10</maven.compiler.source>
54+
<maven.compiler.target>10</maven.compiler.target>
4455
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4556
</properties>
4657

@@ -62,6 +73,18 @@
6273

6374
<build>
6475
<plugins>
76+
<plugin>
77+
<groupId>org.sonatype.plugins</groupId>
78+
<artifactId>nexus-staging-maven-plugin</artifactId>
79+
<version>1.6.8</version>
80+
<extensions>true</extensions>
81+
<configuration>
82+
<serverId>ossrh</serverId>
83+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
84+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
85+
</configuration>
86+
</plugin>
87+
6588
<plugin>
6689
<groupId>org.apache.maven.plugins</groupId>
6790
<artifactId>maven-source-plugin</artifactId>

0 commit comments

Comments
 (0)