Hi @Jatin-Verma Try to use Lombok @Delegate for Sling Model Delegation. Sample usage - https://www.initialyze.com/blog/2020/11/simplify-extending-sling-models-with-lombok/
Hi @Anmol_Bhardwaj Could you please let know the"Path", "Default Redirect" and "ACS URL" property that you have set on SAML config (If possible, share the screenshot of your SAML config)Path on which CUG is enabled.
Hi @jetate I could reproduce your issue (tried in 6.5.0)Additional observation is that if we access the CF programmatically to retrieve the date element value, it is coming correctly. Perhaps you can raise a GitHub issue (Core components v1 content fragment)
@Ezhilcloud You can add in core/pom.xmlPurpose of conditional package is just to include only the classes that you need as opposed to whole dependency that would result in added size to the resulting bundle. See this explanation from the official docs - https://bnd.bndtools.org/instructions/conditio...
@Ezhilcloud Found the issue with conditionalpackage, use the below-conditionalpackage: org.apache.commons.beanutils.*Cause of the issue : org.apache.commons.beanutils.BeanUtils class in turn is using org.apache.commons.beanutils.BeanUtilsBean class. Hence conditionalpackage entry to include BeanUti...
@Ezhilcloud Bring back/Reset the changes done in parent pom.xml and core/pom.xml so far with respect to bnd-maven-plugin Note : We need not copy plugin configurations from parent to child. In this case, core module will inherit the plugin configurations from the parent. Specific instructions can the...
@Ezhilcloud Can you explicitly mention the Java package names of the ones that you are using as opposed to the generic wildcards in conditionalpackage. (package names from the import statements with respect to this dependency in your Java class)
Hi @Ezhilcloud We need to use either conditionalPackage or includeResource based on your requirement(of how you want the dependency to be part of your core bundle - either inline/embedded/conditionally) You can refer the below for sample usage of these instructions. https://myaemlearnings.blogspot.c...