Scoozie Maven Plugin

Maven plugin for Scoozie

License

License

Categories

Categories

Ant Build Tools
GroupId

GroupId

org.antipathy
ArtifactId

ArtifactId

mvn-scoozie
Last Version

Last Version

0.4.5
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

Scoozie Maven Plugin
Maven plugin for Scoozie
Project URL

Project URL

https://github.com/SimonJPegg/mvn_scoozie
Source Code Management

Source Code Management

https://github.com/SimonJPegg/mvn_scoozie

Download mvn-scoozie

How to add to project

<plugin>
    <groupId>org.antipathy</groupId>
    <artifactId>mvn-scoozie</artifactId>
    <version>0.4.5</version>
</plugin>

Dependencies

compile (4)

Group / Artifact Type Version
org.apache.maven : maven-plugin-api jar 3.6.0
org.antipathy : scoozie_2.12 jar 0.4.5
com.typesafe : config jar 1.3.3
org.codehaus.plexus : plexus-utils jar 3.1.0

provided (1)

Group / Artifact Type Version
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.5.2

Project Modules

There are no modules declared in this project.

licenseimg Build Status

releasebadge Maven

Synopsis

A wrapper that allows the use of the Scoozie generation tool in Maven.

Versioning

The version of this plugin should track the latest version of Scoozie

Usage

Add the following snippet to your pom.

<build>
    ...
    <plugins>
        <plugin>
            <groupId>org.antipathy</groupId>
            <artifactId>mvn-scoozie</artifactId>
            <version>${scoozie.version}</version>
            <executions>
                <execution>
                    <id>scoozie-generate</id>
                    <phase>prepare-package</phase>
                    <goals>
                        <goal>scoozie</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <artefacts>
                    <artefact>
                        <configFile>/path/to/some.conf</configFile>
                        <saveAsZip>true</saveAsZip>
                    </artefact>
                    <artefact>
                        <configFile>/path/to/someOther.conf</configFile>
                        <saveAsZip>false</saveAsZip>
                    </artefact>
                </artefacts>
            </configuration>
        </plugin>
    </plugins>
</build>

See the Scoozie Hocon documentation for more information on configuring conf files/

Versions

Version
0.4.5