Hi everyone,
We are trying to make a job-config plugin.
We implemented the Interface JobRunner like this
import javax.inject.Named;
import java.util.Map;
@Named(“myJobRunner”)
public class MyJobRunner implements JobRunner {
@Override
public JobRunnerResponse runJob(JobRunnerRequest request) {
System.out.println(“pppp”);
return null;
}
}
and the atlassian-plugin.xml is confgured like this:
and the pom.xml has this properties:
<jira.version>8.5.3</jira.version>
<amps.version>8.0.2</amps.version>
But this part of the add-on isn’t enable and the log doesn’t give us any information.
Can someone please help us =)
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.