Blackwater

Provides a generic framework to chain and execute tasks.

License

License

GroupId

GroupId

org.basinmc.blackwater
ArtifactId

ArtifactId

parent
Last Version

Last Version

1.0
Release Date

Release Date

Type

Type

pom
Description

Description

Blackwater
Provides a generic framework to chain and execute tasks.
Project URL

Project URL

https://github.com/BasinMC/Blackwater
Project Organization

Project Organization

Basin
Source Code Management

Source Code Management

https://github.com/BasinMC/Blackwater

Download parent

Filename Size
parent-1.0.pom 7 KB
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/org.basinmc.blackwater/parent/ -->
<dependency>
    <groupId>org.basinmc.blackwater</groupId>
    <artifactId>parent</artifactId>
    <version>1.0</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/org.basinmc.blackwater/parent/
implementation 'org.basinmc.blackwater:parent:1.0'
// https://jarcasting.com/artifacts/org.basinmc.blackwater/parent/
implementation ("org.basinmc.blackwater:parent:1.0")
'org.basinmc.blackwater:parent:pom:1.0'
<dependency org="org.basinmc.blackwater" name="parent" rev="1.0">
  <artifact name="parent" type="pom" />
</dependency>
@Grapes(
@Grab(group='org.basinmc.blackwater', module='parent', version='1.0')
)
libraryDependencies += "org.basinmc.blackwater" % "parent" % "1.0"
[org.basinmc.blackwater/parent "1.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • pipeline
  • tasks-git
  • artifacts-maven
  • tasks-maven

License Maven Central GitHub Release CircleCI

Blackwater

A generic framework for chaining build tasks in various build systems.

Table of Contents

Features

  • Chaining of tasks
  • Support for custom task implementations
  • Caching (and thus reusing) of task results
  • Simple integration with third party tools

Usage

Artifact Coordinates: org.basinmc:blackwater:1.0
JavaDoc: Pipeline | Maven Artifact Cache | Git Tasks | Maven Tasks

<dependency>
  <groupId>org.basinmc.blackwater</groupId>
  <artifactId>pipeline</artifactId>
  <version>1.0</version>
</dependency>

<!-- For unstable releases: -->
<repository>
  <id>ossrh</id>
  <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  
  <snapshots>
    <enabled>true</enabled>
  </snapshots>
</repository>

<dependency>
  <groupId>org.basinmc.blackwater</groupId>
  <artifactId>pipeline</artifactId>
  <version>1.0-SNAPSHOT</version>
</dependency>
ArtifactManager manager = ...;
ArtifactReference reference = ...;
Task task = ...;
Path outputPath = ...;

Pipeline pipeline = Pipeline.builder()
  .withArtifactManager(manager) // optional
  .withTask(task)
    .withInputArtifact(reference) // optional
    .withOutputFile(outputPath) // optional
    .register()
  .build();

pipeline.execute();

Note that either an input/output artifact or file may be specified for each task (the exact limitations and additional parameters are specified by the task implementation).

Building

  1. Clone this repository via git clone https://github.com/BasinMC/Blackwater.git or download a zip
  2. Build the library by running mvn clean install
  3. The resulting jars can be found in their respective target directories as well as your local maven repository

Contact

Issues

You encountered problems with the library or have a suggestion? Create an issue!

  1. Make sure your issue has not been fixed in a newer version (check the list of closed issues
  2. Create a new issue from the issues page
  3. Enter your issue's title (something that summarizes your issue) and create a detailed description containing:
    • What is the expected result?
    • What problem occurs?
    • How to reproduce the problem?
    • Crash Log (Please use a Pastebin service)
  4. Click "Submit" and wait for further instructions

Contributing

Before you add any major changes to the library you may want to discuss them with us (see Contact) as we may choose to reject your changes for various reasons. All contributions are applied via Pull-Requests. Patches will not be accepted. Also be aware that all of your contributions are made available under the terms of the Apache License 2.0. Please read the Contribution Guidelines for more information.

License

This project is released under the terms of the Apache License, Version 2.0.

The following note shall be replicated by all contributors within their respective newly created files (variables are to be replaced; E-Mail address or URL are optional):

Copyright <year> <first name> <surname <[email address/url]>
and other copyright owners as documented in the project's IP log.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
org.basinmc.blackwater

Basin

Versions

Version
1.0