Simplified Reactor Plugin

Makes dealing with the reactor system easier. Simply declare a "reactor.children" property, with the path to the children, and this plugin will take care of the rest.

License

License

Categories

Categories

React User Interface Web Frameworks Reactor Container Microservices Reactive libraries
GroupId

GroupId

com.github.jezza
ArtifactId

ArtifactId

simplified-reactor-plugin
Last Version

Last Version

0.6
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

Simplified Reactor Plugin
Makes dealing with the reactor system easier. Simply declare a "reactor.children" property, with the path to the children, and this plugin will take care of the rest.
Project URL

Project URL

https://github.com/Jezza/simplified-reactor
Source Code Management

Source Code Management

https://github.com/Jezza/simplified-reactor

Download simplified-reactor-plugin

How to add to project

<plugin>
    <groupId>com.github.jezza</groupId>
    <artifactId>simplified-reactor-plugin</artifactId>
    <version>0.6</version>
</plugin>

Dependencies

compile (5)

Group / Artifact Type Version
org.apache.maven : maven-plugin-api jar 3.6.2
org.apache.maven : maven-artifact jar 3.6.2
org.apache.maven.shared : maven-artifact-transfer jar 0.11.0
org.apache.maven : maven-core jar 3.6.2
org.codehaus.plexus : plexus-component-annotations jar 1.7.1

provided (1)

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

Project Modules

There are no modules declared in this project.

Simplified Maven Reactor

For some reason, parent projects in maven aren't allowed to produce artefacts.

I didn't need a complex parent/child construct.
I just needed to install some sub-projects if they were found.

This extension does exactly that.

Simply add the necessary junk, and it'll all "just work":

<build>
    <plugins>
        <plugin>
            <groupId>com.github.jezza</groupId>
            <artifactId>simplified-reactor-plugin</artifactId>
            <version>0.2</version>
            <extension>true</extension>
            <configuration>
                <!--
                    The plugin will attempt to locate the project
                    relative to the current folder.
                    You can also use absolute paths.
                -->
                <child>../my-internal-project</child>
                <child>../my-other-project</child>
            </configuration>
        </plugin>
    </plugins>
</build>

Versions

Version
0.6
0.5
0.4
0.3
0.2
0.1