downgrade to java 8

master
InkerBot 3 months ago
parent 79524b107d
commit b011c7b541

@ -6,7 +6,7 @@ plugins {
} }
group 'net.william278' group 'org.inksnow.husk'
version "1.1.2${versionMetadata()}" version "1.1.2${versionMetadata()}"
defaultTasks 'licenseFormat', 'build' defaultTasks 'licenseFormat', 'build'
@ -32,7 +32,7 @@ archivesBaseName = "${rootProject.name}"
tasks { tasks {
compileJava { compileJava {
options.encoding = 'UTF-8' options.encoding = 'UTF-8'
options.release.set(11) options.release.set(8)
} }
jar { jar {
manifest { manifest {
@ -67,36 +67,19 @@ test {
publishing { publishing {
repositories { repositories {
if (System.getenv("RELEASES_MAVEN_USERNAME") != null) {
maven { maven {
name = "william278-releases" name = 'husk-release'
url = "https://repo.william278.net/releases" url = findProperty("repository.huskrelease.url")
credentials { credentials {
username = System.getenv("RELEASES_MAVEN_USERNAME") username = findProperty("repository.huskrelease.username")
password = System.getenv("RELEASES_MAVEN_PASSWORD") password = findProperty("repository.huskrelease.password")
}
authentication {
basic(BasicAuthentication)
}
}
}
if (System.getenv("SNAPSHOTS_MAVEN_USERNAME") != null) {
maven {
name = "william278-snapshots"
url = "https://repo.william278.net/snapshots"
credentials {
username = System.getenv("SNAPSHOTS_MAVEN_USERNAME")
password = System.getenv("SNAPSHOTS_MAVEN_PASSWORD")
}
authentication {
basic(BasicAuthentication)
} }
} }
} }
publications { publications {
mavenJava(MavenPublication) { mavenJava(MavenPublication) {
groupId = 'net.william278' groupId = 'org.inksnow.husk'
artifactId = 'paginedown' artifactId = 'paginedown'
version = "$rootProject.version" version = "$rootProject.version"
artifact jar artifact jar
@ -104,7 +87,6 @@ publishing {
artifact sourcesJar artifact sourcesJar
} }
} }
}
} }
@SuppressWarnings('GrMethodMayBeStatic') @SuppressWarnings('GrMethodMayBeStatic')

@ -21,6 +21,7 @@ package net.william278.paginedown;
import de.themoep.minedown.adventure.MineDown; import de.themoep.minedown.adventure.MineDown;
import net.william278.paginedown.util.StringUtil;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import java.util.List; import java.util.List;
@ -136,7 +137,7 @@ public class PaginatedList {
} }
final StringJoiner menuJoiner = new StringJoiner("\n"); final StringJoiner menuJoiner = new StringJoiner("\n");
if (!options.headerFormat.isBlank()) { if (!StringUtil.isBlank(options.headerFormat)) {
menuJoiner.add(formatPageString(options.headerFormat, page)); menuJoiner.add(formatPageString(options.headerFormat, page));
if (options.spaceAfterHeader) { if (options.spaceAfterHeader) {
menuJoiner.add(""); menuJoiner.add("");
@ -150,7 +151,7 @@ public class PaginatedList {
menuJoiner.add(String.join(options.itemSeparator, getItemsForPage(page))); menuJoiner.add(String.join(options.itemSeparator, getItemsForPage(page)));
} }
if (!options.footerFormat.isBlank()) { if (!StringUtil.isBlank(options.footerFormat)) {
if (options.spaceBeforeFooter) { if (options.spaceBeforeFooter) {
menuJoiner.add(""); menuJoiner.add("");
} }
@ -291,7 +292,7 @@ public class PaginatedList {
lastPage = i; lastPage = i;
} }
} }
if (!pages.toString().isBlank()) { if (!StringUtil.isBlank(pages.toString())) {
pageGroups.add(pages.toString()); pageGroups.add(pages.toString());
} }
return pageGroups.toString(); return pageGroups.toString();

@ -0,0 +1,40 @@
/*
* This file is part of PagineDown, licensed under the Apache License 2.0.
*
* Copyright (c) William278 <will27528@gmail.com>
* Copyright (c) contributors
*
* 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.
*/
package net.william278.paginedown.util;
public final class StringUtil {
private StringUtil() {
throw new UnsupportedOperationException("This is a utility class and cannot be instantiated");
}
public static boolean isBlank(String $this) {
final int strLen = $this.length();
if (strLen == 0) {
return true;
}
for (int i = 0; i < strLen; i++) {
if (!Character.isWhitespace($this.charAt(i))) {
return false;
}
}
return true;
}
}
Loading…
Cancel
Save