3 Commits

Author SHA1 Message Date
1cb37c3c1b fix XML context error 2024-08-30 10:27:52 -04:00
bac1444251 minor fixes 2024-08-26 11:20:07 -04:00
0ff9c09d10 refactored POM 2024-08-26 11:11:08 -04:00
4 changed files with 27 additions and 31 deletions

48
pom.xml
View File

@@ -112,44 +112,31 @@
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>io.repaint.maven</groupId>
<artifactId>tiles-maven-plugin</artifactId>
<version>2.40</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>io.repaint.maven</groupId>
<artifactId>tiles-maven-plugin</artifactId>
<version>2.36</version>
<extensions>true</extensions>
<configuration>
<tiles>
<!-- Documentation: https://bitbucket.org/inteligr8/ootbee-beedk/src/stable/beedk-acs-platform-self-rad-tile -->
<tile>com.inteligr8.ootbee:beedk-acs-platform-self-rad-tile:[1.0.0,2.0.0)</tile>
<!-- Documentation: https://bitbucket.org/inteligr8/ootbee-beedk/src/stable/beedk-acs-search-rad-tile -->
<tile>com.inteligr8.ootbee:beedk-acs-search-rad-tile:[1.0.1,2.0.0)</tile>
<!-- Documentation: https://bitbucket.org/inteligr8/ootbee-beedk/src/stable/beedk-aps-rad-tile -->
<!-- Not much point to this without the bootstrapped processes and task implementations
<tile>com.inteligr8.ootbee:beedk-aps-rad-tile:[1.0.0,2.0.0)</tile>
-->
<tile>com.inteligr8.ootbee:beedk-acs-platform-self-rad-tile:[1.1.5,2.0.0)</tile>
<!-- Documentation: https://bitbucket.org/inteligr8/ootbee-beedk/src/stable/beedk-acs-platform-module-tile -->
<tile>com.inteligr8.ootbee:beedk-acs-platform-module-tile:[1.0.0,2.0.0)</tile>
<tile>com.inteligr8.ootbee:beedk-acs-platform-module-tile:[1.1.5,2.0.0)</tile>
<!-- Documentation: https://bitbucket.org/inteligr8/ootbee-beedk/src/stable/beedk-acs-platform-self-it-tile
<tile>com.inteligr8.ootbee:beedk-acs-platform-self-it-tile:[1.0.0,2.0.0)</tile> -->
<tile>com.inteligr8.ootbee:beedk-acs-platform-self-it-tile:[1.1.5,2.0.0)</tile> -->
</tiles>
</configuration>
</plugin>
<!-- avoids log4j dependency -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
<!-- avoids struts dependency -->
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.12.1</version>
</plugin>
<!-- Force use of a new maven-dependency-plugin that doesn't download struts dependency -->
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.7.1</version>
</plugin>
</plugins>
</build>
@@ -162,12 +149,14 @@
</os>
</activation>
<properties>
<acs-share.timeout>1200000</acs-share.timeout>
<acs-platform.timeout>2400000</acs-platform.timeout>
</properties>
</profile>
<profile>
<id>ossrh-release</id>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<build>
<plugins>
<plugin>
@@ -213,6 +202,13 @@
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
<executions>
<execution>
<id>ossrh-deploy</id>
<phase>deploy</phase>
<goals><goal>deploy</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

View File

@@ -8,9 +8,9 @@
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!-- Enable Spring annotation scanning for classes in package -->
<context:component-scan base-package="com.inteligr8.alfresco.jmx"
<context:component-scan base-package="com.inteligr8.alfresco.attrclean"
name-generator="org.springframework.context.annotation.FullyQualifiedAnnotationBeanNameGenerator">
<context:include-filter type="assignable" expression="com.inteligr8.alfresco.jmx.BootstrapService" />
<context:include-filter type="assignable" expression="com.inteligr8.alfresco.attrclean.BootstrapService" />
</context:component-scan>
</beans>

View File

@@ -8,9 +8,9 @@
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!-- Enable Spring annotation scanning for classes aps-public-rest-api -->
<context:component-scan base-package="com.inteligr8.alfresco.jmx"
<context:component-scan base-package="com.inteligr8.alfresco.attrclean"
name-generator="org.springframework.context.annotation.FullyQualifiedAnnotationBeanNameGenerator">
<context:exclude-filter type="assignable" expression="com.inteligr8.alfresco.jmx.BootstrapService" />
<context:exclude-filter type="assignable" expression="com.inteligr8.alfresco.attrclean.BootstrapService" />
</context:component-scan>
</beans>

View File

@@ -1,4 +1,4 @@
module.id=${project.groupId}.${project.artifactId}
module.title=${project.name}
module.description=${project.description}
module.version=${project.version}
module.version=${module.version}