All Projects → eclipse → Rdf4j

eclipse / Rdf4j

Licence: bsd-3-clause
Eclipse RDF4J: scalable RDF for Java

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Rdf4j

sparql-micro-service
SPARQL micro-services: A lightweight approach to query Web APIs with SPARQL
Stars: ✭ 22 (-90.91%)
Mutual labels:  linked-data, sparql, rdf, semantic-web
Graphql To Sparql.js
Converts GraphQL queries to SPARQL queries
Stars: ✭ 62 (-74.38%)
Mutual labels:  hacktoberfest, rdf, semantic-web, sparql
Semanticmediawiki
🔗 Semantic MediaWiki turns MediaWiki into a knowledge management platform with query and export capabilities
Stars: ✭ 359 (+48.35%)
Mutual labels:  linked-data, rdf, semantic-web, sparql
Hypergraphql
GraphQL interface for querying and serving linked data on the Web.
Stars: ✭ 120 (-50.41%)
Mutual labels:  linked-data, rdf, semantic-web, sparql
Processor
Ontology-driven Linked Data processor and server for SPARQL backends. Apache License.
Stars: ✭ 54 (-77.69%)
Mutual labels:  linked-data, sparql, rdf, semantic-web
LD-Connect
LD Connect is a Linked Data portal for IOS Press in collaboration with the STKO Lab at UC Santa Barbara.
Stars: ✭ 0 (-100%)
Mutual labels:  linked-data, sparql, rdf, semantic-web
Hypergraphql
GraphQL interface for querying and serving linked data on the Web.
Stars: ✭ 112 (-53.72%)
Mutual labels:  linked-data, rdf, semantic-web, sparql
CSV2RDF
Streaming, transforming, SPARQL-based CSV to RDF converter. Apache license.
Stars: ✭ 48 (-80.17%)
Mutual labels:  linked-data, sparql, rdf, semantic-web
LinkedDataHub
The Knowledge Graph notebook. Apache license.
Stars: ✭ 150 (-38.02%)
Mutual labels:  linked-data, sparql, rdf, semantic-web
Web Client
Generic Linked Data browser and UX component framework. Apache license.
Stars: ✭ 105 (-56.61%)
Mutual labels:  linked-data, rdf, semantic-web
Dokieli
💡 dokieli is a clientside editor for decentralised article publishing, annotations and social interactions
Stars: ✭ 582 (+140.5%)
Mutual labels:  linked-data, rdf, semantic-web
Rdf Ext
RDF library for NodeJS and the Browsers
Stars: ✭ 97 (-59.92%)
Mutual labels:  linked-data, rdf, sparql
Rdflib
RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information.
Stars: ✭ 1,584 (+554.55%)
Mutual labels:  linked-data, rdf, semantic-web
Pyld
JSON-LD processor written in Python
Stars: ✭ 413 (+70.66%)
Mutual labels:  linked-data, rdf, semantic-web
Rdf
RDF.rb is a pure-Ruby library for working with Resource Description Framework (RDF) data.
Stars: ✭ 353 (+45.87%)
Mutual labels:  linked-data, rdf, semantic-web
Awesome Semantic Web
A curated list of various semantic web and linked data resources.
Stars: ✭ 642 (+165.29%)
Mutual labels:  rdf, semantic-web, sparql
Informationmodel
The Information Model of the International Data Spaces implements the IDS reference architecture as an extensible, machine readable and technology independent data model.
Stars: ✭ 27 (-88.84%)
Mutual labels:  linked-data, rdf, semantic-web
Nspm
🤖 Neural SPARQL Machines for Knowledge Graph Question Answering.
Stars: ✭ 156 (-35.54%)
Mutual labels:  linked-data, rdf, sparql
Rdfsharp
Lightweight and friendly .NET library for modeling Semantic Web applications
Stars: ✭ 72 (-70.25%)
Mutual labels:  rdf, semantic-web, sparql
Jsonld.js
A JSON-LD Processor and API implementation in JavaScript
Stars: ✭ 1,212 (+400.83%)
Mutual labels:  linked-data, rdf, semantic-web

Welcome to the Eclipse RDF4J repository

RDF4J

This is the main code repository for the Eclipse RDF4J project.

main status develop status Join the chat at https://gitter.im/eclipse/rdf4j

Visit the project website for news, documentation, and downloadable releases.

Installation and usage

For installation and usage instructions of the RDF4J Workbench and Server applications, see RDF4J Server and Workbench.

For installation and usage instructions of the RDF4J Java libaries, see Programming with RDF4J.

Building from source

RDF4J is a multi-module maven project. It can be compiled, tested, and installed with the usual maven lifecycle phases from the command line, for example:

  • mvn verify - compiles and runs all tests
  • mvn package - compiles, tests, and packages all modules
  • mvn install - compiles, tests, packages, and installs all artifacts in the local maven repository
  • mvn -Pquick install - compiles, packages and installs everything (skipping test execution)

These commands can be run from the project root to execute on the entire project or (if you're only interested in working with a particular module) from any module's subdirectory.

To build the full RDF4J project, including onejar and SDK files and full aggregated javadoc, from source, run:

 mvn -Passembly package

The SDK and onejar will be available in assembly/target. Individual module jars and wars will be in target/ in their respective modules.

Modern IDEs like Eclipse, IntelliJ IDEA, or Netbeans can of course also be used to build, test, and run (parts of) the project.

Keen to contribute?

We welcome contributions! Whether you have a new feature you want to add, or a bug you want to fix, or a bit of documentation you want to improve, it's all very welcome. Have a look in our issue tracker for any open problems, in particular the ones marked as good first issue or as help wanted. Or feel free to add your own new issue if what you have in mind is not there yet.

To get started on your contribution, please first read our Contributor guidelines.

The short version:

  1. Digitally sign the Eclipse Contributor Agreement (ECA). You can do this by logging into the Eclipse projects forge; click on "Eclipse Contributor Agreement"; and Complete the form. Be sure to use the same email address when you register for the account that you intend to use on Git commit records. See the ECA FAQ for more info.
  2. Create an issue in the issue tracker that describes your improvement, new feature, or bug fix - or if you're picking up an existing issue, comment on that issue that you intend to provide a solution for it.
  3. Fork the GitHub repository.
  4. Create a new branch (starting from main) for your changes. Name your branch like this: GH-1234-short-description-here where 1234 is the Github issue number.
  5. Make your changes on this branch. Apply the RDF4J code formatting guidelines. Don't forget to include unit tests.
  6. Commit your changes into the branch. Use meaningful commit messages. Reference the issue number in each commit message (for example "GH-276: added null check"). IMPORTANT: sign off every commit (using the -s flag).
  7. Run mvn verify from the project root to make sure all tests succeed (both your own new ones, and existing).
  8. Once your fix is complete, put it up for review by opening a Pull Request against the main branch in the central Github repository. If you have a lot of commits on your PR, make sure to squash your commits.

These steps are explained in more detail in the Contributor guidelines.

You can find more detailed information about our development and release processes in the Developer Workflow and Project Management documentation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].