Release fixes

This commit is contained in:
Christopher Schnick 2022-08-13 09:29:26 +02:00
parent 2d70ee165c
commit 81d087fa9b
8 changed files with 7 additions and 12 deletions

View file

@ -1,6 +1,9 @@
[![Build Status](https://github.com/xpipe-io/xpipe_java/actions/workflows/build.yml/badge.svg)](https://github.com/xpipe-io/xpipe_java/actions/workflows/build.yml)
[![Publish Status](https://github.com/xpipe-io/xpipe_java/actions/workflows/publishb.yml/badge.svg)](https://github.com/xpipe-io/xpipe_java/actions/workflows/publish.yml)
## X-Pipe Java
The fundamental components of the [X-Pipe project]().
The fundamental components of the [X-Pipe project](https://docs.xpipe.io).
This repository contains the following four modules:
- Core - Shared core classes of the Java API and the X-Pipe daemon implementation
@ -12,7 +15,7 @@ This repository contains the following four modules:
## Installation / Usage
The *core* and *extension* libraries are used in X-Pipe extension development.
For setup instructions, see the [X-Pipe extension development]() section.
For setup instructions, see the [X-Pipe extension development](https://xpipe-io.readthedocs.io/en/latest/dev/extensions.html) 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.

View file

@ -1,6 +1,5 @@
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.xpipe/api/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.xpipe/api)
[![javadoc](https://javadoc.io/badge2/io.xpipe/api/javadoc.svg)](https://javadoc.io/doc/io.xpipe/api)
[![Build Status](https://github.com/xpipe-io/xpipe_java/actions/workflows/api-build.yml/badge.svg)](https://github.com/xpipe-io/xpipe_java/actions/workflows/api-build.yml)
## X-Pipe Java API
@ -13,6 +12,6 @@ The X-Pipe API for Java allows you to use most of the X-Pipe functionality from
## Setup
Either install the [dependency](https://maven-badges.herokuapp.com/maven-central/io.xpipe/api) from Maven Central
using your favourite build tool or alternatively download the `xpipe-api.jar`, `xpipe-core.jar`, and `xpipe-beacon.jar`
using your favourite build tool or alternatively download the `api.jar`, `core.jar`, and `beacon.jar`
from the [releases page](https://github.com/xpipe-io/xpipe_java/releases/latest) and add them to the classpath.

View file

@ -1,6 +1,5 @@
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.xpipe/beacon/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.xpipe/beacon)
[![javadoc](https://javadoc.io/badge2/io.xpipe/beacon/javadoc.svg)](https://javadoc.io/doc/io.xpipe/beacon)
[![Build Status](https://github.com/xpipe-io/xpipe_java/actions/workflows/beacon.yml/badge.svg)](https://github.com/xpipe-io/xpipe_java/actions/workflows/beacon.yml)
## X-Pipe Beacon

View file

@ -1,6 +1,5 @@
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.xpipe/core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.xpipe/core)
[![javadoc](https://javadoc.io/badge2/io.xpipe/core/javadoc.svg)](https://javadoc.io/doc/io.xpipe/core)
[![Build Status](https://github.com/xpipe-io/xpipe_java/actions/workflows/core-build.yml/badge.svg)](https://github.com/xpipe-io/xpipe_java/actions/workflows/core-build.yml)
## X-Pipe Core

View file

@ -1,6 +1,5 @@
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.xpipe/extension/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.xpipe/extension)
[![javadoc](https://javadoc.io/badge2/io.xpipe/extension/javadoc.svg)](https://javadoc.io/doc/io.xpipe/extension)
[![Build Status](https://github.com/xpipe-io/xpipe_java/actions/workflows/extension.yml/badge.svg)](https://github.com/xpipe-io/xpipe_java/actions/workflows/extension.yml)
## X-Pipe Extension API

View file

@ -50,7 +50,6 @@ jreleaser {
artifact {
distributionType = 'SINGLE_JAR'
path = 'api/build/libs/api-{{version}}.jar'
transform = 'build/xpipe-api-{{version}}.jar'
}
}
@ -58,7 +57,6 @@ jreleaser {
artifact {
distributionType = 'SINGLE_JAR'
path = 'core/build/libs/core-{{version}}.jar'
transform = 'build/xpipe-core-{{version}}.jar'
}
}
@ -66,7 +64,6 @@ jreleaser {
artifact {
distributionType = 'SINGLE_JAR'
path = 'beacon/build/libs/beacon-{{version}}.jar'
transform = 'build/xpipe-beacon-{{version}}.jar'
}
}
@ -74,7 +71,6 @@ jreleaser {
artifact {
distributionType = 'SINGLE_JAR'
path = 'extension/build/libs/extension-{{version}}.jar'
transform = 'build/xpipe-extension-{{version}}.jar'
}
}
}

View file

@ -1 +1 @@
0.0.1.2
0.0.1.3