-
Type: New Feature
-
Status: Resolved
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: Core Dev Guide (CORG)
-
Team:DevTools
-
Sprint:DevTools-09
Do not use Maven activeByDefault profile feature: it is counter-intuitive and useless.
Instead use a property activation based on the absence of the property. That fulfills the requirements without introducing weird behaviors.
<profile>
<id>gwt</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile> <id>gwt</id> <activation> <property> <name>!skipgwt</name> </property> </activation> </profile>
- is related to
-
NXP-5660 modules listed as "activeByDefault" must always be ran except when they are explicitely excluded
- Resolved
-
NXP-24952 Compile Nuxeo with Java 11
- Resolved
-
NXP-27440 Extract nuxeo-jsf-ui to its own git repository
- Resolved
-
NXP-19209 Setup a bench for Nuxeo Drive remote scan
- Resolved
- links to