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

0
Test1/.gitignore vendored Normal file → Executable file
View File

20
Test1/.idea/.gitignore generated vendored Normal file → Executable file
View File

@@ -1,10 +1,10 @@
# Default ignored files
/shelf/
/workspace.xml
# Ignored default folder with query files
/queries/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/
# Default ignored files
/shelf/
/workspace.xml
# Ignored default folder with query files
/queries/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/

26
Test1/.idea/compiler.xml generated Normal file → Executable file
View File

@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<annotationProcessing>
<profile name="Maven default annotation processors profile" enabled="true">
<sourceOutputDir name="target/generated-sources/annotations" />
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
<outputRelativeToContentRoot value="true" />
<module name="app" />
<module name="core" />
</profile>
</annotationProcessing>
</component>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<annotationProcessing>
<profile name="Maven default annotation processors profile" enabled="true">
<sourceOutputDir name="target/generated-sources/annotations" />
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
<outputRelativeToContentRoot value="true" />
<module name="app" />
<module name="core" />
</profile>
</annotationProcessing>
</component>
</project>

38
Test1/.idea/jarRepositories.xml generated Normal file → Executable file
View File

@@ -1,20 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RemoteRepositoriesConfiguration">
<remote-repository>
<option name="id" value="central" />
<option name="name" value="Central Repository" />
<option name="url" value="https://repo.maven.apache.org/maven2" />
</remote-repository>
<remote-repository>
<option name="id" value="central" />
<option name="name" value="Maven Central repository" />
<option name="url" value="https://repo1.maven.org/maven2" />
</remote-repository>
<remote-repository>
<option name="id" value="jboss.community" />
<option name="name" value="JBoss Community repository" />
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
</remote-repository>
</component>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RemoteRepositoriesConfiguration">
<remote-repository>
<option name="id" value="central" />
<option name="name" value="Central Repository" />
<option name="url" value="https://repo.maven.apache.org/maven2" />
</remote-repository>
<remote-repository>
<option name="id" value="central" />
<option name="name" value="Maven Central repository" />
<option name="url" value="https://repo1.maven.org/maven2" />
</remote-repository>
<remote-repository>
<option name="id" value="jboss.community" />
<option name="name" value="JBoss Community repository" />
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
</remote-repository>
</component>
</project>

22
Test1/.idea/misc.xml generated Normal file → Executable file
View File

@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="MavenProjectsManager">
<option name="originalFiles">
<list>
<option value="$PROJECT_DIR$/pom.xml" />
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="25" project-jdk-type="JavaSDK" />
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="MavenProjectsManager">
<option name="originalFiles">
<list>
<option value="$PROJECT_DIR$/pom.xml" />
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="25" project-jdk-type="JavaSDK" />
</project>

10
Test1/.idea/vcs.xml generated Normal file → Executable file
View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
</component>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
</component>
</project>

0
Test1/.java-version Normal file → Executable file
View File

0
Test1/Nest.toml Normal file → Executable file
View File

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.");
}
}

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

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

8
Test1/core/Prey.toml Normal file → Executable file
View File

@@ -1,4 +1,4 @@
[package]
name = "core"
version = "0.1.0"
entry_point = "com/raven/Main.java"
[package]
name = "core"
version = "0.1.0"
entry_point = "com/raven/Main.java"

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

12
Test1/core/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/core/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.");
}
}

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