Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 18 additions & 17 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
The MIT License (MIT)
Copyright (c) 2026 Intent HQ Limited. All rights reserved.

Copyright (c) 2020 Intent HQ
This software, including the source code in this repository and any
binary artifacts published from it (including, without limitation,
artifacts published to Maven Central), is the proprietary and
confidential property of Intent HQ Limited ("Intent HQ").

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
NO LICENCE IS GRANTED BY THIS REPOSITORY OR BY ANY PUBLISHED ARTIFACT.
Use, copying, modification, distribution, or incorporation of this
software, in whole or in part, is permitted only under the terms of a
separate written commercial agreement with Intent HQ. Without such an
agreement, no rights of any kind are granted, whether by implication,
estoppel, or otherwise.

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
IN NO EVENT SHALL INTENT HQ BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR
THE USE OR OTHER DEALINGS IN THE SOFTWARE.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
For licensing enquiries, contact: legal@intenthq.com
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# Action Processor Integrations

![GitHub release (latest SemVer including pre-releases)](https://img.shields.io/github/v/release/intenthq/action-processor-integrations?color=blue&include_prereleases&label=release) [![CI Status](https://github.com/intenthq/action-processor-integrations/workflows/CI/badge.svg)](https://github.com/intenthq/action-processor-integrations/actions?query=workflow%3ACI)

A library of interfaces that clients of Intent HQ's Action Processor
build their custom data integrations against (CSV / SFTP / S3 feeds).

## Licence and use

This repository hosts proprietary software belonging to Intent HQ Limited.
It is public solely because the library is distributed via Maven Central
so that clients can consume it to build their own integrations against
the Action Processor.

Use of this software — including any artifact published to Maven Central
from this repository — requires a commercial agreement with Intent HQ
Limited. See [LICENSE](LICENSE).

For licensing enquiries: legal@intenthq.com
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ ThisBuild / organizationHomepage := Some(url("https://www.intenthq.com/"))

ThisBuild / homepage := Some(url("https://github.com/intenthq/action-processor-integrations"))
ThisBuild / developers := List(Developer("intenthq", "Intent HQ", null, url("https://www.intenthq.com/")))
ThisBuild / licenses := Seq(("MIT", url("http://opensource.org/licenses/MIT")))
ThisBuild / licenses := Seq(
("Proprietary", url("https://github.com/intenthq/action-processor-integrations/blob/master/LICENSE"))
)

ThisBuild / scalaVersion := "2.13.10"
ThisBuild / semanticdbEnabled := true
Expand Down
Loading