You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2018/01/30 23:48:58 UTC

[incubator-pulsar] branch master updated: Update maven compiler plugin to newest version (#1042)

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

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 0439a1f  Update maven compiler plugin to newest version (#1042)
0439a1f is described below

commit 0439a1fa425dae46c6cb6298b4d21ee662f72e11
Author: Ivan Kelly <iv...@apache.org>
AuthorDate: Wed Jan 31 00:48:55 2018 +0100

    Update maven compiler plugin to newest version (#1042)
    
    * Update maven compiler plugin to newest version
    
    The previously used version doesn't handle the errors from newer jdk
    versions, so if there's a error you can't see what's actually wrong.
    
    * Let aspectJ bind to correct phase
    
    It was binding to process-sources before, which makes no sense since
    it works on the class files. Removed the phase specification, which
    allows it to bind to compile (as it does by default).
---
 pom.xml                  | 2 +-
 pulsar-broker/pom.xml    | 1 -
 pulsar-zookeeper/pom.xml | 1 -
 3 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index a98b6ed..29efa02 100644
--- a/pom.xml
+++ b/pom.xml
@@ -742,7 +742,7 @@ flexible messaging model and an intuitive client API.</description>
         </plugin>
         <plugin>
           <artifactId>maven-compiler-plugin</artifactId>
-          <version>2.3.2</version>
+          <version>3.7.0</version>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
diff --git a/pulsar-broker/pom.xml b/pulsar-broker/pom.xml
index 6964295..2f8811d 100644
--- a/pulsar-broker/pom.xml
+++ b/pulsar-broker/pom.xml
@@ -246,7 +246,6 @@
         </configuration>
         <executions>
           <execution>
-            <phase>process-sources</phase>
             <goals>
               <goal>compile</goal>
             </goals>
diff --git a/pulsar-zookeeper/pom.xml b/pulsar-zookeeper/pom.xml
index 0ce07cb..b8944e9 100644
--- a/pulsar-zookeeper/pom.xml
+++ b/pulsar-zookeeper/pom.xml
@@ -97,7 +97,6 @@
         </configuration>
         <executions>
           <execution>
-            <phase>process-sources</phase>
             <goals>
               <goal>compile</goal>
             </goals>

-- 
To stop receiving notification emails like this one, please contact
mmerli@apache.org.