You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2018/11/01 12:27:17 UTC

[isis] branch master updated: ISIS-1899: fixes lombok version for simpleapp

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

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


The following commit(s) were added to refs/heads/master by this push:
     new fd69146  ISIS-1899: fixes lombok version for simpleapp
fd69146 is described below

commit fd691464a904f03d5c8fd92a329b750d9bf5f768
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Thu Nov 1 12:27:04 2018 +0000

    ISIS-1899: fixes lombok version for simpleapp
    
    due to conflict with DN's annotation processor in latest version
---
 example/application/simpleapp/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/example/application/simpleapp/pom.xml b/example/application/simpleapp/pom.xml
index 304676b..4ca6f69 100644
--- a/example/application/simpleapp/pom.xml
+++ b/example/application/simpleapp/pom.xml
@@ -39,7 +39,8 @@
         <revision>1.0.0-SNAPSHOT</revision>
         <isis.version>${revision}</isis.version>
 
-        <lombok.version>[1.18,)</lombok.version>
+        <!-- bumping to 1.18.4 causes a conflict with DataNucleus' annotation processor. -->
+        <lombok.version>1.18.2</lombok.version>
 
         <compiler-plugin.source>1.8</compiler-plugin.source>
         <compiler-plugin.target>1.8</compiler-plugin.target>