Skip to content

Commit

Permalink
Set the flowgate-common module to compile with jdk1.8
Browse files Browse the repository at this point in the history
Signed-off-by: YangJiao <jiaoya@vmware.com>
  • Loading branch information
YangJiao committed May 17, 2021
1 parent f5a7b3b commit a8ec496
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions flowgate-common/pom.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -36,4 +37,17 @@
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit a8ec496

Please sign in to comment.