14 Commits

Author SHA1 Message Date
ee148a90b3 v1.1.1 pom 2025-03-20 16:36:53 -04:00
bec0550abe Merge branch 'develop' into stable 2025-03-20 16:36:21 -04:00
3535b9f419 fix sigdoc issue with TaskListener 2025-03-20 16:36:06 -04:00
c78d9188f9 v1.1.0 pom/README 2025-02-10 15:20:10 -05:00
cded98c35a Merge branch 'develop' into stable 2025-02-10 15:19:43 -05:00
3846946b3c Merge branch 'develop' into stable 2022-12-24 12:28:08 -05:00
30f3e48152 v1.0.4 pom 2022-12-24 12:27:39 -05:00
9560c65732 Merge branch 'develop' into stable 2022-12-24 12:26:52 -05:00
9d2882d0ca v1.0.3 pom 2022-12-22 20:10:45 -05:00
7666025648 Merge branch 'develop' into stable 2022-12-22 20:08:17 -05:00
98be1e3e41 v1.0.2 pom 2022-12-22 15:59:28 -05:00
a97ca48f1a Merge branch 'develop' into stable 2022-12-22 15:58:35 -05:00
60a8b678d0 added README 2022-12-21 16:40:14 -05:00
149e4035d7 v1.0.0 pom 2022-12-21 16:34:06 -05:00
4 changed files with 21 additions and 14 deletions

View File

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

23
pom.xml
View File

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

View File

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

View File

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