bugzilla-default-components-smartics

Overview

This project provides a configuration for the bugzilla-maven-plugin to do administration on Bugzilla products remotely.

The configuration provides artificial components for Bugzilla products and contains information for Core, Documentation, and Management in English (en) and German (de).

The configuration adheres to the Bugzilla Configuration XSD.

Configuration Example

The following snippet shows how to add this configuration the the configuration of the bugzilla-maven-plugin.

<build>
  <pluginManagement>
    <plugins>
      <plugin>
        <groupId>de.smartics.maven.plugin</groupId>
        <artifactId>bugzilla-maven-plugin</artifactId>
        <version>0.3.0</version>
        <dependencies>
          <dependency>
            <groupId>de.smartics.config</groupId>
            <artifactId>bugzilla-default-components-smartics</artifactId>
            <version>1.0.1</version>
          </dependency>
        </dependencies>
        <configuration>
          <classification>My Classification</classification>
          <initialOwner>me@mycorp.com</initialOwner>
          <locale>en</locale>
        </configuration>
      </plugin>
    </plugins>
  </pluginManagement>
</build>