1 Commits

Author SHA256 Message Date
eccc5bcf62 NoIssue: Build improvements 2025-12-27 22:10:20 +01:00
6 changed files with 13 additions and 7 deletions

View File

@@ -28,7 +28,7 @@ repositories {
}
dependencies {
implementation("org.jetbrains:annotations:26.0.1")
compileOnly("org.jetbrains:annotations:26.0.2-1")
}
java {

View File

@@ -1,3 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
export VERSION=$(git describe --tags --exact-match 2>/dev/null \
|| git symbolic-ref --short -q HEAD \
|| git rev-parse --short HEAD)

View File

@@ -1 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
./gradlew clean ; rm -rf build

View File

@@ -1,3 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
export VERSION=$(git describe --tags --exact-match 2>/dev/null \
|| git symbolic-ref --short -q HEAD \
|| git rev-parse --short HEAD)

View File

@@ -1,3 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
export VERSION=$(git describe --tags --exact-match 2>/dev/null \
|| git symbolic-ref --short -q HEAD \
|| git rev-parse --short HEAD)

View File

@@ -1,6 +0,0 @@
package com.r35157.nenjim.hubd;
public interface SomeInterface {
String concat(String x, String y);
void divideByZero() throws ArithmeticException;
}