forked 6ad82c3339 and refactored to combine prey.toml with nest.toml. The WorkspaceHandler.discover_packages() function is very broken.

This commit is contained in:
2026-02-22 23:23:41 -05:00
parent 3654d76340
commit 5473ca7440
59 changed files with 90 additions and 90 deletions

2
Test1/app/.gitignore vendored Normal file → Executable file
View File

@@ -1,2 +1,2 @@
target/
target/
*.class

12
Test1/app/Prey.toml Normal file → Executable file
View File

@@ -1,7 +1,7 @@
[package]
name = "app"
version = "0.1.0"
entry_point = "com/raven/Main.java"
[dependencies]
[package]
name = "app"
version = "0.1.0"
entry_point = "com/raven/Main.java"
[dependencies]
code = {path = "../core"}

0
Test1/app/pom.xml Normal file → Executable file
View File

12
Test1/app/src/main/java/com/raven/Main.java Normal file → Executable file
View File

@@ -1,7 +1,7 @@
package com.raven;
public class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
package com.raven;
public class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}

8
Test1/app/src/test/java/Test.java Normal file → Executable file
View File

@@ -1,5 +1,5 @@
public class Test {
public static void main(String[] args) {
System.out.println("This is a test.");
}
public class Test {
public static void main(String[] args) {
System.out.println("This is a test.");
}
}