Compare commits

..

3 Commits

Author SHA256 Message Date
9988e03759 NoIssue: Add Context 2026-01-24 14:57:29 +01:00
Minimons
eda81e73c6 NoIssue: Add noop() 2026-01-24 14:50:13 +01:00
eccc5bcf62 NoIssue: Build improvements 2025-12-27 22:10:20 +01:00
8 changed files with 26 additions and 7 deletions

View File

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

View File

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

View File

@@ -1 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
./gradlew clean ; rm -rf build ./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 \ export VERSION=$(git describe --tags --exact-match 2>/dev/null \
|| git symbolic-ref --short -q HEAD \ || git symbolic-ref --short -q HEAD \
|| git rev-parse --short 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 \ export VERSION=$(git describe --tags --exact-match 2>/dev/null \
|| git symbolic-ref --short -q HEAD \ || git symbolic-ref --short -q HEAD \
|| git rev-parse --short HEAD) || git rev-parse --short HEAD)

View File

@@ -0,0 +1,4 @@
package com.r35157.nenjim.hubd;
public interface Context {
}

View File

@@ -0,0 +1,9 @@
package com.r35157.nenjim.hubd;
public interface NenjimHub {
/**
* A no-operation (noop). This method is suppoted to do nothing.
*/
void noop();
}

View File

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