Compare commits

..

1 Commits

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

21
pom.xml
View File

@ -147,7 +147,7 @@
</build> </build>
</profile> </profile>
<profile> <profile>
<id>ossrh-release</id> <id>central-release</id>
<properties> <properties>
<maven.deploy.skip>true</maven.deploy.skip> <maven.deploy.skip>true</maven.deploy.skip>
</properties> </properties>
@ -189,21 +189,14 @@
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.sonatype.plugins</groupId> <groupId>org.sonatype.central</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId> <artifactId>central-publishing-maven-plugin</artifactId>
<version>1.7.0</version> <version>0.7.0</version>
<extensions>true</extensions>
<configuration> <configuration>
<serverId>ossrh</serverId> <publishingServerId>central</publishingServerId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoPublish>true</autoPublish>
<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

@ -50,7 +50,8 @@
<version>@pom.version@</version> <version>@pom.version@</version>
</docletArtifact> </docletArtifact>
<useStandardDocletOptions>false</useStandardDocletOptions> <useStandardDocletOptions>false</useStandardDocletOptions>
<outputDirectory>${basedir}</outputDirectory> <destDir>apidocs</destDir>
<reportOutputDirectory>${basedir}</reportOutputDirectory>
<additionalOptions> <additionalOptions>
<additionalOption>--title 'Example Title'</additionalOption> <additionalOption>--title 'Example Title'</additionalOption>
<additionalOption>--apiName '${project.name}'</additionalOption> <additionalOption>--apiName '${project.name}'</additionalOption>

View File

@ -1,24 +0,0 @@
import org.activiti.engine.delegate.DelegateTask;
import org.activiti.engine.delegate.TaskListener;
import org.springframework.stereotype.Component;
/**
* This is an example comment for the class TestNamedTaskListenerBean.
*
* Here is a second line that happens
* to span multiple lines. This class does not have an author.
*/
@Component("testTaskListener")
public class TestNamedTaskListenerBean implements TaskListener {
/**
* This is an example method comment.
*
* @param task A delegate task for access to the activity and process instance.
*/
@Override
public void notify(DelegateTask task) {
}
}

View File

@ -135,7 +135,7 @@ class ActivitiDocFilter {
} }
} }
this.logger.info("delegates: {}: {}", beanId, delegateMethodElements); this.logger.info("delegates: {}", 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**"] /><#assign _delegateMethod = delegateMethod /></#if> <#if delegateMethod??><#assign taskUses = taskUses + ["**Service Task**"] /></#if>
<#if executionListenerMethod??><#assign taskUses = taskUses + ["**Execution Listener**"] /><#assign _delegateMethod = executionListenerMethod /></#if> <#if executionListenerMethod??><#assign taskUses = taskUses + ["**Execution Listener**"] /></#if>
<#if taskListenerMethod??><#assign taskUses = taskUses + ["**Task Listener**"] /><#assign _delegateMethod = taskListenerMethod /></#if> <#if taskListenerMethod??><#assign taskUses = taskUses + ["**Task Listener**"] /></#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