-
Notifications
You must be signed in to change notification settings - Fork 41
Working with Maven
Paolo Predonzani edited this page Jan 31, 2018
·
3 revisions
Uploader-plus is available on the Maven Central repository so you do not need to download it manually or compile it to use it.
If you're using Maven for your Alfresco customisation project and if you want to include (overlay) uploader-plus in your build, you'll need to add the following dependencies.
In your Alfresco repo project:
<dependency>
<groupId>com.softwareloop</groupId>
<artifactId>uploader-plus-repo</artifactId>
<version>1.6</version>
</dependency>
In your Share project:
<dependency>
<groupId>com.softwareloop</groupId>
<artifactId>uploader-plus-surf</artifactId>
<version>1.6</version>
</dependency>
For more information see the Maven Alfresco Plugin introduction and advanced usage.