You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by si...@apache.org on 2017/08/04 20:53:48 UTC

[bookkeeper] branch master updated: ISSUE #383: mvn release:branch fails

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

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new 1c8101e  ISSUE #383: mvn release:branch fails
1c8101e is described below

commit 1c8101ed688d97fa93a8143c697f6c7489d5c6f9
Author: Sijie Guo <si...@apache.org>
AuthorDate: Fri Aug 4 13:53:41 2017 -0700

    ISSUE #383: mvn release:branch fails
    
    Descriptions of the changes in this PR:
    
    - change `compilerArguments` to `compilerArgs`
    - use `compilerArg` for configuring the arguments for compilation.
    
    Author: Sijie Guo <si...@apache.org>
    
    Reviewers: Enrico Olivelli <eo...@gmail.com>
    
    This closes #384 from sijie/sijie/fix_release, closes #383
---
 pom.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index c7b775c..9ea05b8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -140,11 +140,11 @@
         <configuration>
           <source>1.8</source>
           <target>1.8</target>
-          <compilerArguments>
-            <Werror />
-            <Xlint:deprecation />
-            <Xlint:unchecked />
-	  </compilerArguments>
+          <compilerArgs>
+            <compilerArg>-Werror</compilerArg>
+            <compilerArg>-Xlint:deprecation</compilerArg>
+            <compilerArg>-Xlint:unchecked</compilerArg>
+	  </compilerArgs>
         </configuration>
       </plugin>
       <plugin>

-- 
To stop receiving notification emails like this one, please contact
['"commits@bookkeeper.apache.org" <co...@bookkeeper.apache.org>'].