Skip to content

khmarbaise/doxygen-maven-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Doxygen Maven Plugin

Apache License, Version 2.0, January 2004 Build Status Maven Central

License

Apache License, Version 2.0, January 2004

Issue Tracker

The Issue Tracker

Status

TODOs

Usage

The first and simplest usage is to configure the Maven Licenses Verifier Plugin

<plugin>
  <groupId>com.soebes.maven.plugins</groupId>
  <artifactId>doxygen-maven-plugin</artifactId>
  <version>1.1.0</version>
  <executions>
    <execution>
      <phase>test</phase>
      <goals>
        <goal>check</goal>
      </goals>
    </execution>
  </executions>
</plugin>

Settings Configuration

If you like you can configure an appropriate plugin group in your settings.xml file to make life a little bit easier.

<settings>
  ...
  <pluginGroups>
    <pluginGroup>com.soebes.maven.plugins</pluginGroup>
  </pluginGroups>
  ...
</settings>