-
Type: Improvement
-
Status: Resolved
-
Priority: Minor
-
Resolution: Done
-
Affects Version/s: 1.2.3
-
Fix Version/s: 1.2.4
-
Tags:
Nuxeo IDE version 1.2.3 does not allow to generate a marketplace package using a Nuxeo Platform 5.8 SDK.
=> Allow marketplace package generation with Nuxeo Platform 5.8 / Maven 3
=> Add the following xml to the parent pom in the marketplace project template
<build>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-versions</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.nuxeo.build</groupId>
<artifactId>ant-assembly-maven-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>