{"id":28376879,"url":"https://github.com/udevbe/wayland-java-bindings","last_synced_at":"2026-03-03T20:03:45.195Z","repository":{"id":21086178,"uuid":"24386060","full_name":"udevbe/wayland-java-bindings","owner":"udevbe","description":"The Wayland [protocol] Java [language] Bindings","archived":false,"fork":false,"pushed_at":"2017-11-05T15:24:02.000Z","size":1044,"stargazers_count":15,"open_issues_count":3,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-05-30T00:37:22.505Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/udevbe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-09-23T19:24:11.000Z","updated_at":"2025-03-11T03:32:49.000Z","dependencies_parsed_at":"2022-08-19T02:40:45.059Z","dependency_job_id":null,"html_url":"https://github.com/udevbe/wayland-java-bindings","commit_stats":null,"previous_names":["zubnix/wayland-java-bindings"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/udevbe/wayland-java-bindings","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/udevbe%2Fwayland-java-bindings","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/udevbe%2Fwayland-java-bindings/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/udevbe%2Fwayland-java-bindings/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/udevbe%2Fwayland-java-bindings/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/udevbe","download_url":"https://codeload.github.com/udevbe/wayland-java-bindings/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/udevbe%2Fwayland-java-bindings/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262084535,"owners_count":23256260,"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","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":[],"created_at":"2025-05-30T00:30:27.922Z","updated_at":"2025-10-05T16:43:17.971Z","avatar_url":"https://github.com/udevbe.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"wayland-java-bindings\n=====================\n[![Build Status](https://travis-ci.org/udevbe/wayland-java-bindings.svg?branch=master)](https://travis-ci.org/udevbe/wayland-java-bindings)\nThe Wayland protocol Java-language Binding\n\nJavadoc\n=======\n[Here](http://udevbe.github.io/wayland-java-bindings/)\n\nUsing\n=====\nBindings are available in the maven central repository:\n```xml\n \u003cdependency\u003e\n  \u003cgroupId\u003eorg.freedesktop\u003c/groupId\u003e\n  \u003cartifactId\u003ewayland\u003c/artifactId\u003e\n  \u003cversion\u003e1.4.0\u003c/version\u003e\n \u003c/dependency\u003e\n```\n\nBuilding\n========\nRun `mvn install` in the root of the project and add the following\nmaven dependency to start using the bindings:\n```xml\n \u003cdependency\u003e\n  \u003cgroupId\u003eorg.freedesktop\u003c/groupId\u003e\n  \u003cartifactId\u003ewayland\u003c/artifactId\u003e\n  \u003cversion\u003e1.4.1-SNAPSHOT\u003c/version\u003e\n \u003c/dependency\u003e\n```\n\nPrivate protocol\n================\nThe project allows you to generate your own private wayland protocol bindings.\nAdd\n```xml\n \u003cdependency\u003e\n  \u003cgroupId\u003eorg.freedesktop\u003c/groupId\u003e\n  \u003cartifactId\u003egenerator\u003c/artifactId\u003e\n  \u003cversion\u003e1.4.0\u003c/version\u003e\n  \u003cscope\u003eprovided\u003c/scope\u003e\n \u003c/dependency\u003e\n```\nto your build path, no need to put it on your classpath as it will only be used during compilation.\n\nAdd\n```xml\n \u003cdependency\u003e\n  \u003cgroupId\u003eorg.freedesktop\u003c/groupId\u003e\n  \u003cartifactId\u003estubs\u003c/artifactId\u003e\n  \u003cversion\u003e1.4.0\u003c/version\u003e\n \u003c/dependency\u003e\n```\nto your classpath.\n\nAdd a `@Protocols` annotation to your own private `package-info.java` file and set it to use your own private protocol xml file. Here's an [example](wayland/src/main/java/org/freedesktop/wayland/package-info.java).\n\nBuild your project with maven (or gradle). The generated bindings should automatically appear in the same package as your `package-info.java` file.\n\nState\n=====\n - Usable.\n - Pure Java (Jaccall)\n\nKnown Issues\n============\n - See issues board.\n\nTODO\n====\n - Unit tests.\n - Debug logging.\n\nLicense\n=======\n   Copyright 2015 Erik De Rijcke\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fudevbe%2Fwayland-java-bindings","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fudevbe%2Fwayland-java-bindings","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fudevbe%2Fwayland-java-bindings/lists"}