1 Commits

Author SHA1 Message Date
d0756afaa7 ossrh to central portal 2025-02-10 16:07:03 -05:00
4 changed files with 14 additions and 21 deletions

View File

@@ -27,7 +27,7 @@ You can use it by defining a Javadoc plugin in your Activiti extension Maven JAR
<docletArtifact>
<groupId>com.inteligr8.activiti</groupId>
<artifactId>activiti-api-doclet</artifactId>
<version>1.1.0</version>
<version>1.1-SNAPSHOT</version>
</docletArtifact>
<useStandardDocletOptions>false</useStandardDocletOptions>
<additionalOptions>

23
pom.xml
View File

@@ -4,7 +4,7 @@
<groupId>com.inteligr8.activiti</groupId>
<artifactId>activiti-api-doclet</artifactId>
<packaging>jar</packaging>
<version>1.1.1</version>
<version>1.1-SNAPSHOT</version>
<name>Activiti Doclet</name>
<description>JavaDoc Doclet for Activiti Extension APIs</description>
@@ -147,7 +147,7 @@
</build>
</profile>
<profile>
<id>ossrh-release</id>
<id>central-release</id>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
@@ -189,21 +189,14 @@
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.7.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
<executions>
<execution>
<id>ossrh-deploy</id>
<phase>deploy</phase>
<goals><goal>deploy</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

View File

@@ -135,7 +135,7 @@ class ActivitiDocFilter {
}
}
this.logger.info("delegates: {}: {}", beanId, delegateMethodElements);
this.logger.info("delegates: {}", delegateMethodElements);
// getAllMembers() will get inherited methods
for (Element memberElement : this.docenv.getElementUtils().getAllMembers(classElement)) {

View File

@@ -30,11 +30,11 @@ ${r"${"}${beanId}${r"}"}
<#if delegateMethod?? || executionListenerMethod?? || taskListenerMethod??>
<#assign taskUses = [] />
<#if delegateMethod??><#assign taskUses = taskUses + ["**Service Task**"] /><#assign _delegateMethod = delegateMethod /></#if>
<#if executionListenerMethod??><#assign taskUses = taskUses + ["**Execution Listener**"] /><#assign _delegateMethod = executionListenerMethod /></#if>
<#if taskListenerMethod??><#assign taskUses = taskUses + ["**Task Listener**"] /><#assign _delegateMethod = taskListenerMethod /></#if>
<#if delegateMethod??><#assign taskUses = taskUses + ["**Service Task**"] /></#if>
<#if executionListenerMethod??><#assign taskUses = taskUses + ["**Execution Listener**"] /></#if>
<#if taskListenerMethod??><#assign taskUses = taskUses + ["**Task Listener**"] /></#if>
You may use it in a ${taskUses?join(" or ")}.
<@sigdoc sig=_delegateMethod showParams=false/>
<@sigdoc sig=delegateMethod showParams=false/>
</#if></#if><#if (methods?size > 0)>
## Expression Uses