<!-- ====== Profiles ============================================================= -->
<profiles>
<profile>
<id>developer</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<!-- Build KAB file -->
<plugin>
<groupId>com.kosdev.kos.maven</groupId>
<artifactId>kos-kab-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>kabtool</goal>
</goals>
<configuration>
<type>kos.system</type>
<content>
<copy>
<dir>lib</dir>
<include>${project.build.directory}/${project.artifactId}-${project.version}.jar</include>
</copy>
<copy>
<dir>.</dir>
<include>${project.basedir}/descriptor.json</include>
</copy>
</content>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>