How to deploy rep:policy files via maven?

前端 未结 4 1079
误落风尘
误落风尘 2021-02-14 13:22

I\'ve added some extra ACLs to /home/groups and /home/users by adding _rep_policy.xml files for each, but can\'t seem to get them to deploy. I added the following lines to my va

4条回答
  •  清酒与你
    2021-02-14 13:48

    Since the 1.0.2 version update of Adobe's content-package-maven-plugin, all content packaging functionality was removed and added to the org.apache.jackrabbit filevault-package-maven-plugin

    The acHandling configuration will no longer work in the content-package-maven-plugin and instead needs to be added to the filevault-package-maven-plugin

    
        org.apache.jackrabbit
        filevault-package-maven-plugin
        1.0.3
        true
        
            
                
                    com.company
                    company.core
                    /apps/company/install
                
            
    
            
            
                merge_preserve
            
            
    
        
    
    
        com.day.jcr.vault
        content-package-maven-plugin
        1.0.2
        true
        
            true
            true
            company.aem
        
    
    

    For a full migration guide, visit the Jackrabbit documentation

提交回复
热议问题