Go to file
Christopher Schnick 9e1363c5df Submodule fixes
2022-10-15 16:43:10 +02:00
.github/workflows Remove announcement 2022-10-11 20:22:48 +02:00
api Submodule fixes 2022-10-15 16:43:10 +02:00
beacon Submodule fixes 2022-10-15 16:43:10 +02:00
core Submodule fixes 2022-10-15 16:43:10 +02:00
deps@23936c9a6a Submodule fixes 2022-10-15 16:43:10 +02:00
extension Submodule fixes 2022-10-15 16:43:10 +02:00
gradle/wrapper Fix standalone unit tests 2022-03-10 18:48:06 +01:00
misc Remove announcement 2022-10-11 20:22:48 +02:00
.gitattributes Initial commit 2021-12-01 19:17:54 +01:00
.gitignore Rework 2022-08-12 17:26:01 +02:00
.gitmodules Initial commit 2021-12-01 19:17:54 +01:00
build.gradle Update jreleaser 2022-10-11 19:07:28 +02:00
gradlew Fixed permissions issue 2022-08-12 17:32:00 +02:00
gradlew.bat Initial commit 2021-12-01 19:17:54 +01:00
jreleaser.gradle Update jreleaser.gradle 2022-10-12 18:27:36 +02:00
LICENSE Add license 2022-03-10 20:16:46 +01:00
README.md Release fixes 2022-08-13 09:29:26 +02:00
settings.gradle Rework 2022-08-12 17:26:01 +02:00

Build Status Publish Status

X-Pipe Java

The fundamental components of the X-Pipe project. This repository contains the following four modules:

  • Core - Shared core classes of the Java API and the X-Pipe daemon implementation
  • API - The API that can be used to interact with X-Pipe from any JVM-based languages
  • Beacon - The X-Pipe beacon component is responsible for handling all communications between the X-Pipe daemon and the client applications, for example the various programming language APIs and the CLI
  • Extension - An API to create all different kinds of extensions for the X-Pipe platform

Installation / Usage

The core and extension libraries are used in X-Pipe extension development. For setup instructions, see the X-Pipe extension development section.

The beacon library handles all communication and serves as a reference when implementing an API or program that communicates with the X-Pipe daemon.

The api library serves as a reference implementation for other potential X-Pipe APIs and is also used to enable your Java program to communicate with X-Pipe. For setup instructions, see the X-Pipe Java API Usage section.

Development

All X-Pipe components target JDK 17 and make full use of the Java Module System (JPMS). All components are modularized, including all their dependencies. In case a dependency is (sadly) not modularized yet, module information is manually added using moditect. These dependency generation rules are accumulated in the X-Pipe dependencies repository, which is shared between all components and integrated as a git submodule.

Some unit tests depend on a connection to an X-Pipe daemon to properly function. To launch the installed daemon, it is required that the XPIPE_HOME environment variable is set or the xpipe / xpipe.exe CLI executable is added to the PATH variable.