Using this pom.xml configuration, it is just needed to run "mvn jfx:native" to build your JavaFX application bundled with the current JRE in use.
The application will be outputed to ./target/jfx/native
| { | |
| "$schema": "https://opencode.ai/config.json", | |
| "mcp": { | |
| "ghidramcp": { | |
| "type": "remote", | |
| "url": "http://127.0.0.1:8081/sse", | |
| "enabled": true | |
| } | |
| } | |
| } |
| #!/bin/bash | |
| # Find the latest DAG file automatically | |
| latestDag=$(ls -t Library/Bee/*.dag | head -1) | |
| exe="/Applications/Unity/Hub/Editor/6000.0.58f2/Unity.app/Contents/bee_backend" | |
| # Check for C# compilation errors only | |
| "$exe" --profile="Library/Bee/backend_profiler0.traceevents" --stdin-canary --dagfile="$latestDag" --continue-on-failure ScriptAssemblies | grep "error CS" |
| #!/bin/zsh | |
| if [ $# -lt 1 ]; then | |
| echo "Usage: $0 <script_path> [method1 method2 ...]" | |
| echo "If no methods are provided, members (properties and methods) will be retrieved automatically using opencode." | |
| echo "Example: $0 Assets/Class.cs" | |
| echo "Or with specific methods: $0 Assets/Class.cs method1 method2" | |
| exit 1 | |
| fi |
| const fs = require('fs') | |
| const directory = './src/images'; | |
| const scriptFile = 'index.js'; | |
| if (fs.existsSync(`${directory}/${scriptFile}`)) | |
| fs.unlinkSync(`${directory}/${scriptFile}`); | |
| const files = fs.readdirSync(directory); | |
| fs.writeFileSync(`${directory}/${scriptFile}`, 'export const IMAGES = {\n'); |
Using this pom.xml configuration, it is just needed to run "mvn jfx:native" to build your JavaFX application bundled with the current JRE in use.
The application will be outputed to ./target/jfx/native