You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by vo...@apache.org on 2021/08/26 10:54:01 UTC

[rocketmq-streams] branch main updated: Debug why pass test

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

vongosling pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/rocketmq-streams.git


The following commit(s) were added to refs/heads/main by this push:
     new f1bbde9  Debug why pass test
f1bbde9 is described below

commit f1bbde9762e2abebae910b848f4dce0c56dec82c
Author: vongosling <vo...@apache.org>
AuthorDate: Thu Aug 26 18:53:48 2021 +0800

    Debug why pass test
---
 pom.xml | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/pom.xml b/pom.xml
index 8386557..87ac198 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,7 +31,7 @@
     <version>1.0.0-SNAPSHOT</version>
     <name>Apache RocketMQ Streams ${project.version}</name>
     <packaging>pom</packaging>
-    <url>http://rocketmq.apache.org/</url>
+    <url>https://rocketmq.apache.org/</url>
 
     <modules>
         <module>rocketmq-streams-commons</module>
@@ -54,12 +54,12 @@
     </modules>
 
     <properties>
-        <java.version>1.8</java.version>
-        <java.encoding>UTF-8</java.encoding>
-        <project.build.sourceEncoding>${java.encoding}</project.build.sourceEncoding>
-      
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+
         <maven.test.skip>false</maven.test.skip>
-        <maven.javadoc.skip>true</maven.javadoc.skip>
+        <maven.compiler.source>1.8</maven.compiler.source>
+        <maven.compiler.target>1.8</maven.compiler.target>
       
         <log4j.version>1.2.17</log4j.version>
         <commons-logging.version>1.1</commons-logging.version>
@@ -117,12 +117,12 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
-                <version>2.5.1</version>
+                <version>3.5.1</version>
                 <configuration>
-                    <source>${java.version}</source>
-                    <target>${java.version}</target>
-                    <encoding>UTF-8</encoding>
-                    <skip>true</skip>
+                    <source>${maven.compiler.source}</source>
+                    <target>${maven.compiler.target}</target>
+                    <showDeprecation>true</showDeprecation>
+                    <showWarnings>true</showWarnings>
                 </configuration>
             </plugin>
             <plugin>