https://github.com/inrupt/rdf-wrapping-java
An RDF Wrapping library for working with domain models
https://github.com/inrupt/rdf-wrapping-java
java-library
Last synced: 10 months ago
JSON representation
An RDF Wrapping library for working with domain models
- Host: GitHub
- URL: https://github.com/inrupt/rdf-wrapping-java
- Owner: inrupt
- License: mit
- Created: 2023-01-24T14:33:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-10T13:07:11.000Z (over 1 year ago)
- Last Synced: 2024-12-14T02:29:34.764Z (over 1 year ago)
- Topics: java-library
- Language: Java
- Homepage: https://docs.inrupt.com/developer-tools/java/client-libraries/
- Size: 8.14 MB
- Stars: 5
- Watchers: 11
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# Inrupt RDF Wrapping for Java
[](CODE-OF-CONDUCT.md)
This project adheres to the Contributor Covenant [code of conduct](CODE-OF-CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to [engineering@inrupt.com](mailto:engineering@inrupt.com).
This project provides an API for wrapping Commons-RDF structures
as domain-specific objects.
## Using the libraries as a dependency in your own projects
To use the library in your own project you can add the dependency to your build. An example of adding the project in your pom would be:
```
x.x.x
com.inrupt.rdf
inrupt-rdf-wrapping-commons
${inrupt.rdf.wrapping.version}
```
## Using this repository locally
After cloning the repository locally you can work with the code as follows:
### Code build
The project can be built with Maven and a Java 11+ build environment.
```bash
./mvnw install
```
### Running tests
The repository contains multiple tests. Each module has dedicated unit tests.
By running the following command all tests are run:
```bash
./mvnw test
```
#### Code coverage
This project uses JaCoCo for generating the code coverage metric that measures how many lines of code are executed during automated tests. To generate the reports (in different formats) run:
```bash
./mvnw verify
```
The reports are then placed in the `report/target/site` folder on the project root.
## Issues & Help
### Solid Community Forum
If you have questions about working with Solid or just want to share what you’re
working on, visit the [Solid forum](https://forum.solidproject.org/). The Solid
forum is a good place to meet the rest of the community.
### Bugs and Feature Requests
- For public feedback, bug reports, and feature requests please file an issue
via [Github](https://github.com/inrupt/rdf-wrapping-java/issues).
- For non-public feedback or support inquiries please use the [Inrupt Service
Desk](https://inrupt.atlassian.net/servicedesk).
## Documentation
- [RDF Wrapping documentation](https://inrupt.github.io/rdf-wrapping-java/)
## Changelog
See the [CHANGELOG.md](CHANGELOG.md).
## License
MIT © [Inrupt](https://inrupt.com)