You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by il...@apache.org on 2019/07/10 03:25:36 UTC

[dubbo-samples] branch master updated: make compilation pass

This is an automated email from the ASF dual-hosted git repository.

iluo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-samples.git


The following commit(s) were added to refs/heads/master by this push:
     new ab8b3b0  make compilation pass
ab8b3b0 is described below

commit ab8b3b00d21467e93614a9ae2c870a0300ed85de
Author: Ian Luo <ia...@gmail.com>
AuthorDate: Wed Jul 10 11:23:48 2019 +0800

    make compilation pass
---
 dubbo-samples-edas/pom.xml | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/dubbo-samples-edas/pom.xml b/dubbo-samples-edas/pom.xml
index 7832a64..a3e6393 100644
--- a/dubbo-samples-edas/pom.xml
+++ b/dubbo-samples-edas/pom.xml
@@ -12,10 +12,29 @@
 
     <artifactId>dubbo-samples-edas</artifactId>
 
+    <properties>
+        <source.level>1.8</source.level>
+        <target.level>1.8</target.level>
+        <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
+    </properties>
+
     <modules>
         <module>dubbo-samples-edas-provider</module>
         <module>dubbo-samples-edas-consumer</module>
     </modules>
 
 
-</project>
\ No newline at end of file
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>${maven-compiler-plugin.version}</version>
+                <configuration>
+                    <source>${source.level}</source>
+                    <target>${target.level}</target>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org