cancel
Showing results for 
Search instead for 
Did you mean: 

Records Management Plugin

stalinlouis
Champ in-the-making
Champ in-the-making
how to install records management in Maven Alfresco SDK
3 REPLIES 3

sujaypillai
Confirmed Champ
Confirmed Champ
Try to add the below dependency to your pom -
<blockcode>
<dependency>
  <groupId>org.alfresco</groupId>
  <artifactId>alfresco-recordsmanagement</artifactId>
  <version>3.0Stable</version>
  <classifier>labs</classifier>
  <type>amp</type>
</dependency>
</blockcode>

thirumal
Champ on-the-rise
Champ on-the-rise
added the dependency in pom.xml but it doesn't work!

Hi,

This is handled by a profile in the top POM, and it needs to be activated manually: $mvn clean install -Prm
The profile looks like this:

  <!– RM profile, manually activated, automatically adds support for RM development (dependencies) and install the RM amps in the WARs –>
        <profile>
            <id>rm</id>
             <properties>
                <alfresco.rm.version>2.3.a.1</alfresco.rm.version>
                <app.rm.amps.location>${project.build.directory}/rm-amps</app.rm.amps.location>
                <app.rm.war.location>${project.build.directory}/${project.build.finalName}.war</app.rm.war.location>
                <app.rm.artifact>org.alfresco:${alfresco.rm.artifactId}:${alfresco.rm.version}:amp</app.rm.artifact>
             </properties>
        </profile>