Skip to content

Commit 5fa3837

Browse files
committed
Update the minimum supported Java version to 8
1 parent 4003571 commit 5fa3837

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
<artifactId>maven-compiler-plugin</artifactId>
3535
<version>3.5</version>
3636
<configuration>
37-
<source>1.7</source>
38-
<target>1.7</target>
37+
<source>1.8</source>
38+
<target>1.8</target>
3939
</configuration>
4040
</plugin>
4141
</plugins>

release.sh renamed to prepare-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cd $(dirname $0)
99

1010
rm -rf $RELEASE_DIR
1111

12-
mvn clean package
12+
mvn clean verify
1313

1414
DIR=$(mktemp -d)
1515
INST_DIR="${DIR}/${DIST_NAME}/bin"

0 commit comments

Comments
 (0)