Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 941 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 941 Bytes

Maven plugin for CBDG

Test Project

Code documentation

Hosted via github pages

The configuration of the plugin in the POM of target-project

<plugins>
    ... 
    <plugin>
        <groupId>info.novatec</groupId>
        <artifactId>cbdg-maven-plugin</artifactId>
        <version>1.0-SNAPSHOT</version>
        <!-- optionaly, executes with install --> 
        <executions>
            <execution>
                <id>generate</id>
                <phase>install</phase>
                <goals>
                    <goal>generate</goal>
                </goals>
            </execution>
        </executions>
    </plugin>
    ...
</plugins>

Run the goal of the plugin on the target-project

./mw cbdg:generate