...
Create the maven module
Make sure that the module is part of the underlying reactor pom
Add the module as a dependency to
ci/taskana-sonar-test-coverage
orci/taskana-adapter-sonar-test-coverage
(depending on the repository) so that the test coverage is computed correctlyFor the Taskana/taskana repository: make sure that the module is listed (with the proper test database) in the
test_backend
job’s matrix. File:.github/workflows/continuous-integration.yml
Add the following dependency to your module if not available in the parent pom
Code Block |
---|
<dependency>
<groupId>pro.taskana</groupId>
<artifactId>taskana-common-logging</artifactId>
<version>${project.version}</version>
</dependency> |