aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'src/BUILD')
-rw-r--r--src/BUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/BUILD b/src/BUILD
index 6a730111c5..e5957de83d 100644
--- a/src/BUILD
+++ b/src/BUILD
@@ -48,7 +48,7 @@ genrule(
VERSION_LINE=$$(cat $< | grep target_version);
JAVA_VERSION=$$(echo $${VERSION_LINE} | sed -E 's/.*value="([^"])".*/\\1/');
if [ -z "$${JAVA_VERSION}" ]; then
- echo "1.8" >$@ # Java 8 is the default
+ echo "1.7" >$@ # Java 7 is the default
elif [[ "$${JAVA_VERSION}" =~ ^[0-9]+$$ ]]; then
echo "1.$${JAVA_VERSION}" >$@ # Add 1. before 7 or 8
else