Mantis Integration in Maven

Besides the maven-changes-plugin , is there a Maven plugin for integrating Mantis?
The idea would be to connect to the Mantis SOAP API to provide greater connectivity with MantisBT.
For example, you could:

  • create a problem
  • create project
  • create project version
  • and etc.

A Java API already exists to provide the Mantis client web service: biz.futureware.mantis: mantis-axis-soap-client .

Other methods for providing Mantis Integration .

+4
source share
1 answer

In the end, I started developing a plugin called mantis-maven-plugin hosted on GitHub.

This plugin connects Maven to the Mantis SOAP API.
Until now, this plugin allows you to:

  • add-project-version : create project version
  • display-project-versions : displays project versions
  • display-version : displays the version of the Mantis server

If someone wants to contribute, feel free to clone the project: https://github.com/ghusta/mantis-maven-plugin .

+3
source

Source: https://habr.com/ru/post/1440565/


All Articles