Hello everyone!
Please i would like to know how to add Records Management support to an Alfresco project created using the SDK 4.1. Many documentations show how to do it for lower versions of the SDK, i will to know how to do it for the version 4.1 of the SDK.
Thanks.
Solved! Go to Solution.
Records Management (governance services) is an amp which you can include in your repository docker module (e.g. <yourRepoModule>-platform-docker) and share docker module (e.g. e.g. <yourRepoModule>-share-docker). It would automatically apply the feature to both repo and share. Give it a try.
These are dependencies for RM:
<dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-governance-services-community-repo</artifactId> <version>3.4.0</version> <type>amp</type> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency>
<groupId>org.alfresco</groupId> <artifactId>alfresco-governance-services-community-share</artifactId> <version>3.4.0</version> <type>amp</type> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> Enterprise version: <dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-governance-services-enterprise-repo</artifactId> <version>3.4.0</version> <type>amp</type> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-governance-services-enterprise-share</artifactId> <version>3.4.0</version> <type>amp</type> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency>
You can find a demo project here for reference: https://github.com/abhinavmishra14/governance-services-demo
Records Management (governance services) is an amp which you can include in your repository docker module (e.g. <yourRepoModule>-platform-docker) and share docker module (e.g. e.g. <yourRepoModule>-share-docker). It would automatically apply the feature to both repo and share. Give it a try.
These are dependencies for RM:
<dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-governance-services-community-repo</artifactId> <version>3.4.0</version> <type>amp</type> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency>
<groupId>org.alfresco</groupId> <artifactId>alfresco-governance-services-community-share</artifactId> <version>3.4.0</version> <type>amp</type> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> Enterprise version: <dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-governance-services-enterprise-repo</artifactId> <version>3.4.0</version> <type>amp</type> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-governance-services-enterprise-share</artifactId> <version>3.4.0</version> <type>amp</type> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency>
You can find a demo project here for reference: https://github.com/abhinavmishra14/governance-services-demo
Hi there. Thanks for the link now it is much more understandable.
@adamsmitt wrote:
Hi there. Thanks for the link now it is much more understandable.
Glad its helpful, marking this thread closed.
Ask for and offer help to other Alfresco Content Services Users and members of the Alfresco team.
Related links:
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.