Merge branch 'develop' into stable

This commit is contained in:
Brian Long 2022-04-04 17:55:39 -04:00
commit 4a3cebe283
9 changed files with 14 additions and 9 deletions

View File

@ -203,7 +203,7 @@
<plugin>
<groupId>com.inteligr8.alfresco</groupId>
<artifactId>amp-plugin</artifactId>
<version>1.0.6</version>
<version>1.0.7</version>
<executions>
<execution>
<id>build-amp-file</id>
@ -212,6 +212,7 @@
<goal>amp</goal>
</goals>
<configuration>
<classifier>${alfresco.module.classifier}</classifier>
<skip>${beedk.jar.notest.empty}</skip>
</configuration>
</execution>
@ -308,6 +309,7 @@
<!-- configurable -->
<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>
<!-- output -->
<alfresco.module.path>alfresco/module/${alfresco.module.pathname}</alfresco.module.path>

View File

@ -18,6 +18,7 @@
<ats.version>2.3.6</ats.version>
<spring-boot.version>2.3.5.RELEASE</spring-boot.version>
<ate.app.className>${package}.Applicatoin</ate.app.className>
<docker.image.registry>${dockerRegistryHost}</docker.image.registry>
<docker.image.name>${dockerImagePrefix}/${project.artifactId}</docker.image.name>
<docker.image.tag>${project.version}</docker.image.tag>

View File

@ -24,7 +24,7 @@
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
* #L%
*/
package ${groupId};
package ${package};
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

View File

@ -26,7 +26,7 @@
*
* Copyright (C) 2020 - 2021 Inteligr8
*/
package ${groupId};
package ${package};
import java.io.File;
import java.util.Map;

View File

@ -1,4 +1,4 @@
package ${groupId};
package ${package};
import java.io.File;
import java.util.Map;

View File

@ -11,4 +11,4 @@ transform:
logging:
level:
${groupId}: ${dollar}{LOG_LEVEL:info}
${package}: ${dollar}{LOG_LEVEL:info}

View File

@ -24,7 +24,7 @@
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
* #L%
*/
package ${groupId};
package ${package};
import java.util.HashSet;
import java.util.Set;

View File

@ -1,4 +1,4 @@
package ${groupId};
package ${package};
import org.alfresco.transformer.AbstractTransformerController;
import org.junit.Ignore;

View File

@ -38,7 +38,8 @@
<executions>
<execution>
<id>copy-jar</id>
<phase>package</phase>
<!-- want to use 'package', but needs to be after sprintboot repackage -->
<phase>pre-integration-test</phase>
<goals>
<goal>copy-resources</goal>
</goals>
@ -81,7 +82,8 @@
<executions>
<execution>
<id>docker-build</id>
<phase>package</phase>
<!-- want to use 'package', but needs to be after sprintboot repackage -->
<phase>pre-integration-test</phase>
<goals><goal>build</goal></goals>
<configuration>
<skipPush>true</skipPush>