Merge branch 'develop' into stable

This commit is contained in:
Brian Long 2022-04-25 21:35:06 -04:00
commit 3d5b83eaed
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. | | `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.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 ## Results

View File

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