fix(fixes): more fixes

This commit is contained in:
darwincereska
2025-11-10 15:29:57 -05:00
parent a3c1489125
commit 04fbd49b37
5 changed files with 16 additions and 11 deletions

View File

@@ -31,6 +31,9 @@ jobs:
- name: Setup Gradle - name: Setup Gradle
uses: gradle/actions/setup-gradle@v3 uses: gradle/actions/setup-gradle@v3
- name: Build project
run: ./gradlew build
- name: Build native binary - name: Build native binary
run: ./gradlew nativeCompile run: ./gradlew nativeCompile

2
.gitignore vendored
View File

@@ -28,4 +28,4 @@ Thumbs.db
# Other # Other
*.hprof *.hprof
.notevc/ **/.notevc/

View File

@@ -1,11 +1,11 @@
{ {
"version": "1.0.0", "version": "1.0.0",
"created": "2025-11-07T02:45:31.185947Z", "created": "2025-11-07T02:45:31.185947Z",
"head": "faa8ece0", "head": "1052853b",
"lastCommit": { "lastCommit": {
"hash": "faa8ece0", "hash": "1052853b",
"message": "Updated readme", "message": "docs(readme): updated readme",
"timestamp": "2025-11-07T19:12:43.784310Z", "timestamp": "2025-11-10T20:26:39.277835Z",
"author": "darwin" "author": "darwin"
} }
} }

View File

@@ -1,4 +1,11 @@
[ [
{
"hash": "1052853b",
"message": "docs(readme): updated readme",
"timestamp": "2025-11-10T20:26:39.277835Z",
"author": "darwin",
"parent": "faa8ece0"
},
{ {
"hash": "faa8ece0", "hash": "faa8ece0",
"message": "Updated readme", "message": "Updated readme",

View File

@@ -6,7 +6,7 @@ plugins {
application application
id("com.github.gmazzo.buildconfig") version "4.1.2" id("com.github.gmazzo.buildconfig") version "4.1.2"
id("com.gradleup.shadow") version "9.2.2" id("com.gradleup.shadow") version "9.2.2"
id("org.graalvm.buildtools.native") version "0.10.3" id("org.graalvm.buildtools.native") version "0.10.4"
} }
group = "io.notevc" group = "io.notevc"
@@ -69,11 +69,6 @@ tasks.withType<Test> {
useJUnitPlatform() useJUnitPlatform()
} }
// Remove this line - let GraalVM use the default classpath
// tasks.nativeCompile {
// dependsOn(tasks.shadowJar)
// }
tasks.build { tasks.build {
dependsOn(tasks.shadowJar) dependsOn(tasks.shadowJar)
} }