added alfresco.module.noAmp

This commit is contained in:
Brian Long 2022-04-25 21:34:59 -04:00
parent 6332b0b194
commit 4f98ddab63
2 changed files with 4 additions and 1 deletions

View File

@ -50,6 +50,8 @@ The following properties are intended to be exposed by inheriting Public API Mav
| ---------------------------------- |:--------:| ------------------ | ----------- |
| `project.build.packageDirectory` | | `target/package` | A variable specifying the folder name of consolidated resources for packaging. |
| `alfresco.module.pathname` | | `${project.groupId}.${project.artifactId}` | A variable specifying the folder name of module resources. Use this property to help reference module resources. It should rarely ever be overridden. |
| `alfresco.module.classifier` | | *None* | A Maven classifier for the artifact. |
| `alfresco.module.noAmp` | | *Automatic* | Set to `false` to force AMP generation; `true` to force JAR. A value of `true` could produce a non-functional module. |
## Results

View File

@ -213,7 +213,7 @@
</goals>
<configuration>
<classifier>${alfresco.module.classifier}</classifier>
<skip>${beedk.jar.notest.empty}</skip>
<skip>${alfresco.module.noAmp}</skip>
</configuration>
</execution>
</executions>
@ -340,6 +340,7 @@
<project.build.packageDirectory>${project.build.directory}/package</project.build.packageDirectory>
<alfresco.module.pathname>${project.groupId}.${project.artifactId}</alfresco.module.pathname>
<alfresco.module.classifier></alfresco.module.classifier>
<alfresco.module.noAmp>${beedk.jar.notest.empty}</alfresco.module.noAmp>
<!-- output -->
<alfresco.module.path>alfresco/module/${alfresco.module.pathname}</alfresco.module.path>