This is an automated email from the ASF dual-hosted git repository.
sblackmon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/streams.git
The following commit(s) were added to refs/heads/master by this push:
new 03f335c STREAMS-669 make java 8 the default source and target version
03f335c is described below
commit 03f335cf2e44afca3822bf9e65692e553e1604f2
Author: sblackmon <[email protected]>
AuthorDate: Thu Aug 20 16:36:54 2020 -0500
STREAMS-669 make java 8 the default source and target version
---
pom.xml | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/pom.xml b/pom.xml
index b129546..4cb83da 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1253,8 +1253,21 @@
<profiles>
<profile>
+ <id>java-8</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ <jdk>1.8</jdk>
+ </activation>
+ <properties>
+ <java.version>8</java.version>
+ <maven.compiler.source>${java.version}</maven.compiler.source>
+ <maven.compiler.target>${java.version}</maven.compiler.target>
+ </properties>
+ </profile>
+ <profile>
<id>java-11</id>
<activation>
+ <activeByDefault>false</activeByDefault>
<jdk>(1.8,)</jdk>
</activation>
<properties>