mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
Small fixes
This commit is contained in:
parent
4dc685f895
commit
b80b8121f6
3 changed files with 27 additions and 7 deletions
|
@ -31,6 +31,8 @@ public abstract class Charsetter {
|
|||
NewLine newLine;
|
||||
}
|
||||
|
||||
protected Charsetter() {}
|
||||
|
||||
public static Charsetter INSTANCE;
|
||||
|
||||
public static Charsetter get() {
|
||||
|
|
|
@ -9,6 +9,7 @@ module io.xpipe.core {
|
|||
exports io.xpipe.core.data.node;
|
||||
exports io.xpipe.core.data.typed;
|
||||
exports io.xpipe.core.dialog;
|
||||
exports io.xpipe.core.charsetter;
|
||||
|
||||
opens io.xpipe.core.store;
|
||||
opens io.xpipe.core.source;
|
||||
|
@ -18,7 +19,6 @@ module io.xpipe.core {
|
|||
opens io.xpipe.core.data.node;
|
||||
opens io.xpipe.core.data.typed;
|
||||
opens io.xpipe.core.dialog;
|
||||
exports io.xpipe.core.charsetter;
|
||||
|
||||
requires com.fasterxml.jackson.core;
|
||||
requires com.fasterxml.jackson.databind;
|
||||
|
|
|
@ -23,12 +23,6 @@ jreleaser {
|
|||
version = '17'
|
||||
multiProject = true
|
||||
}
|
||||
|
||||
snapshot {
|
||||
enabled = true
|
||||
pattern = '.*-SNAPSHOT'
|
||||
label = 'early-access'
|
||||
}
|
||||
}
|
||||
|
||||
release {
|
||||
|
@ -74,6 +68,30 @@ jreleaser {
|
|||
transform = 'build/xpipe-api-{{version}}.jar'
|
||||
}
|
||||
}
|
||||
|
||||
core {
|
||||
artifact {
|
||||
distributionType = 'SINGLE_JAR'
|
||||
path = 'core/build/libs/core-{{version}}.jar'
|
||||
transform = 'build/xpipe-core-{{version}}.jar'
|
||||
}
|
||||
}
|
||||
|
||||
beacon {
|
||||
artifact {
|
||||
distributionType = 'SINGLE_JAR'
|
||||
path = 'beacon/build/libs/beacon-{{version}}.jar'
|
||||
transform = 'build/xpipe-beacon-{{version}}.jar'
|
||||
}
|
||||
}
|
||||
|
||||
extension {
|
||||
artifact {
|
||||
distributionType = 'SINGLE_JAR'
|
||||
path = 'extension/build/libs/extension-{{version}}.jar'
|
||||
transform = 'build/xpipe-extension-{{version}}.jar'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
announce {
|
||||
|
|
Loading…
Reference in a new issue