I'd like to know if Alfresco could be used only as a framework to manage content in repository. Without all the fancy layers above.
I've tried some maven alfresco archetypes, but they are mainly aimed for creating extensions and alfresco share - I don't understand it much.
Anyway the maven support seems to be very chaotic, maybe because alfresco is not a typical opensource project. And I haven't found any developer guide that would explained how to do what I need, for instance :
including :
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-core</artifactId>
<version>3.4.a</version>
<classifier>community</classifier>
</dependency>
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-data-model</artifactId>
<version>3.4.a</version>
<classifier>community</classifier>
</dependency>
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-repository</artifactId>
<version>3.4.a</version>
<classifier>community</classifier>
</dependency>
And use it in the terms of JCR framework. Could please anybody help ?