Skip to content
This repository has been archived by the owner on Mar 20, 2020. It is now read-only.

Latest commit

 

History

History
22 lines (20 loc) · 635 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 635 Bytes

kola-maven-plugin

Maven Plugin for the Kola Compiler

Usage

Add the following to the <plugins> section in your pom.xml

	<plugin>
                <inherited>true</inherited>
                <groupId>se.sics.kola</groupId>
                <artifactId>kola-maven-plugin</artifactId>
                <version>1.0-SNAPSHOT</version>
                <executions>
                  <execution>
                    <goals>
                      <goal>kolac</goal>
                    </goals>
                    <phase>generate-sources</phase>
                  </execution>
                </executions>
        </plugin>