{"id":21353423,"url":"https://github.com/feathersui/lime-openfl-maven-plugin","last_synced_at":"2026-05-09T16:47:36.024Z","repository":{"id":144503199,"uuid":"453613324","full_name":"feathersui/lime-openfl-maven-plugin","owner":"feathersui","description":"A plugin to build Lime, OpenFL, and Feathers UI projects with Apache Maven","archived":false,"fork":false,"pushed_at":"2023-01-03T00:01:12.000Z","size":443,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-02T12:59:51.632Z","etag":null,"topics":["feathers-ui","haxe","maven","maven-plugin","openfl"],"latest_commit_sha":null,"homepage":"https://feathersui.github.io/lime-openfl-maven-plugin/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/feathersui.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"joshtynjala","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2022-01-30T07:15:43.000Z","updated_at":"2022-09-10T17:06:42.000Z","dependencies_parsed_at":"2023-06-03T16:45:35.137Z","dependency_job_id":null,"html_url":"https://github.com/feathersui/lime-openfl-maven-plugin","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/feathersui/lime-openfl-maven-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersui%2Flime-openfl-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersui%2Flime-openfl-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersui%2Flime-openfl-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersui%2Flime-openfl-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/feathersui","download_url":"https://codeload.github.com/feathersui/lime-openfl-maven-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersui%2Flime-openfl-maven-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278698806,"owners_count":26030398,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["feathers-ui","haxe","maven","maven-plugin","openfl"],"created_at":"2024-11-22T03:17:34.256Z","updated_at":"2025-10-06T23:50:23.547Z","avatar_url":"https://github.com/feathersui.png","language":"Java","funding_links":["https://github.com/sponsors/joshtynjala"],"categories":[],"sub_categories":[],"readme":"# Lime \u0026 OpenFL Maven Plugin\n\nA plugin to build [Lime](https://lime.software/), [OpenFL](https://openfl.org/), and [Feathers UI](https://feathersui.com/) projects with [Apache Maven](https://maven.apache.org/).\n\nPerforms the following actions:\n\n- Either detects your existing [Lime _project.xml_ file](https://lime.software/docs/project-files/xml-format/) or generates one from the [`limeProject` parameter](https://feathersui.github.io/lime-openfl-maven-plugin/apidocs/com/feathersui/maven/plugin/lime_openfl/LimeProject.html) configured in your Maven _pom.xml_ file.\n- Installs any Haxelib libraries specified in _project.xml_ or _pom.xml_.\n- Executes the `lime build` command for the specified target to build your application.\n- Detects [utest](https://lib.haxe.org/p/utest/) test cases and generates a runner.\n- Executes the test runner.\n\n## Prerequisites\n\n- The [Haxe](https://haxe.org/download/) compiler must be installed.\n\n## Usage\n\nThe _lime-openfl-maven-plugin_ includes a couple of goals for building Lime projects.\n\n### Build a Lime project\n\nThe following sample Maven _pom.xml_ demonstrates how to build an existing project with the plugin. Your existing _project.xml_ file should be in the same directory as your _pom.xml_ file.\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n\u003cproject xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\"\u003e\n  \u003cmodelVersion\u003e4.0.0\u003c/modelVersion\u003e\n\n  \u003cgroupId\u003ecom.example\u003c/groupId\u003e\n  \u003cartifactId\u003eexample-lime-project\u003c/artifactId\u003e\n  \u003cversion\u003e1.0.0-SNAPSHOT\u003c/version\u003e\n  \u003cpackaging\u003elime-openfl\u003c/packaging\u003e\n\n  \u003cbuild\u003e\n    \u003cplugins\u003e\n      \u003cplugin\u003e\n        \u003cgroupId\u003ecom.feathersui.maven.plugins\u003c/groupId\u003e\n        \u003cartifactId\u003elime-openfl-maven-plugin\u003c/artifactId\u003e\n        \u003cversion\u003e1.0.0\u003c/version\u003e\n        \u003cextensions\u003etrue\u003c/extensions\u003e\n      \u003c/plugin\u003e\n    \u003c/plugins\u003e\n  \u003c/build\u003e\n\u003c/project\u003e\n```\n\nRun `mvn compile` in a terminal to build your project.\n\n## Generate a Lime _project.xml_ file\n\nIf you don't have an existing Lime _project.xml_ file, or if you prefer to manage all build configuration in the Maven _pom.xml_ file, you can add a [`\u003climeProject\u003e` parameter](https://feathersui.github.io/lime-openfl-maven-plugin/apidocs/com/feathersui/maven/plugin/lime_openfl/LimeProject.html) in the `configuration` section for the plugin.\n\n```xml\n\u003cplugin\u003e\n  \u003cgroupId\u003ecom.feathersui.maven.plugins\u003c/groupId\u003e\n  \u003cartifactId\u003elime-openfl-maven-plugin\u003c/artifactId\u003e\n  \u003cversion\u003e1.0.0\u003c/version\u003e\n  \u003cextensions\u003etrue\u003c/extensions\u003e\n  \u003cconfiguration\u003e\n    \u003climeProject\u003e\n      \u003capp\u003e\n        \u003cmain\u003ecom.example.MyApp\u003c/main\u003e\n        \u003cfile\u003emyapp\u003c/file\u003e\n      \u003c/app\u003e\n      \u003cwindow\u003e\n        \u003cfps\u003e60\u003c/fps\u003e\n        \u003callowHighDpi\u003etrue\u003c/allowHighDpi\u003e\n      \u003c/window\u003e\n      \u003chaxelibs\u003e\n        \u003chaxelib\u003eopenfl\u003c/haxelib\u003e\n        \u003chaxelib\u003eactuate\u003c/haxelib\u003e\n      \u003c/haxelibs\u003e\n      \u003cicons\u003e\n        \u003cicon\u003eassets/myapp-icon.svg\u003c/icon\u003e\n      \u003c/icons\u003e\n    \u003c/limeProject\u003e\n  \u003c/configuration\u003e\n\u003c/plugin\u003e\n```\n\n#### Configuring editors with generated project file\n\nIn Visual Studio Code, you can specify the `lime.projectFile` setting to use the generated project file.\n\n```json\n{\n  \"lime.projectFile\": \"target/project.xml\"\n}\n```\n\nFor code intelligence to work properly, you must build the project at least once with Maven to ensure that this file exists.\n\n## Build the plugin from source\n\nRun the following command in this directory to build and install the lime-openfl-maven-plugin in your local repository.\n\n```sh\nmvn clean install\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeathersui%2Flime-openfl-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffeathersui%2Flime-openfl-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeathersui%2Flime-openfl-maven-plugin/lists"}