|
1 | | -# Corese-Core |
| 1 | +<!-- markdownlint-disable MD033 --> |
| 2 | +<!-- markdownlint-disable MD041 --> |
2 | 3 |
|
3 | | -[](https://cecill.info/licences/Licence_CeCILL-C_V1-en.html) [](https://github.com/orgs/corese-stack/discussions) |
4 | | - |
5 | | -Corese-Core is the central Java library of the Corese platform, designed to implement and extend the Semantic Web standards. It enables creating, manipulating, parsing, serializing, querying, reasoning, and validating RDF data. |
6 | | - |
7 | | -Corese-Core implements key W3C standards such as [RDF](https://www.w3.org/RDF/), [RDFS](https://www.w3.org/2001/sw/wiki/RDFS), [SPARQL 1.1 Query & Update](https://www.w3.org/2001/sw/wiki/SPARQL), [OWL RL](https://www.w3.org/2005/rules/wiki/OWLRL), and [SHACL](https://www.w3.org/TR/shacl/). It also includes extensions like [STTL SPARQL](https://files.inria.fr/corese/doc/sttl.html), [SPARQL Rule](https://files.inria.fr/corese/doc/rule.html), and [LDScript](https://files.inria.fr/corese/doc/ldscript.html). |
| 4 | +<p align="center"> |
| 5 | + <a href="https://project.inria.fr/corese/"> |
| 6 | + <img src="docs/source/_static/logo/corese-core.svg" width="200" alt="Corese-Core-logo"> |
| 7 | + </a> |
| 8 | + <br> |
| 9 | + <strong>Java library for the Semantic Web of Linked Data</strong> |
| 10 | +</p> |
8 | 11 |
|
9 | | -## Features |
10 | | - |
11 | | -- RDF data manipulation and reasoning. |
12 | | -- SPARQL query processing with advanced features. |
13 | | -- Support for semantic web standards (RDF, RDFS, OWL RL, SHACL). |
14 | | -- Extensions for rules and custom scripting (STTL, SPARQL Rule, LDScript). |
| 12 | +[](https://cecill.info/licences/Licence_CeCILL-C_V1-en.html) [](https://github.com/orgs/corese-stack/discussions) |
15 | 13 |
|
16 | | -## Getting Started |
| 14 | +## ✨ Features |
17 | 15 |
|
18 | | -### Download and Install |
| 16 | +- Manipulate RDF graphs (parse, serialize, transform) |
| 17 | +- Execute SPARQL 1.1 queries and updates |
| 18 | +- Reason with RDFS and OWL RL |
| 19 | +- Validate RDF graphs using SHACL |
| 20 | +- Transform RDF using STTL (SPARQL Template Transformation Language) |
| 21 | +- Apply logic-based rules with SPARQL Rules |
| 22 | +- Extend functionality and scripting with LDScript |
19 | 23 |
|
20 | | -To integrate Corese-Core into your project, you can use Maven, Gradle, or download the latest JAR file directly. |
| 24 | +## 🚀 Getting Started |
21 | 25 |
|
22 | | -**Maven:** |
| 26 | +Integrate Corese-Core into your Java project using your preferred build tool. |
23 | 27 |
|
24 | | -Add this dependency to your `pom.xml` file: |
| 28 | +### Maven |
25 | 29 |
|
26 | | -``` xml |
| 30 | +```xml |
27 | 31 | <dependency> |
28 | | - <groupId>fr.inria.corese</groupId> |
29 | | - <artifactId>corese-core</artifactId> |
30 | | - <version>4.6.4-SNAPSHOT</version> |
| 32 | + <groupId>fr.inria.corese</groupId> |
| 33 | + <artifactId>corese-core</artifactId> |
| 34 | + <version>4.6.4-SNAPSHOT</version> |
31 | 35 | </dependency> |
32 | 36 | ``` |
33 | 37 |
|
34 | | -**Gradle:** |
35 | | - |
36 | | -Include the following in your `build.gradle` file: |
| 38 | +### Gradle |
37 | 39 |
|
38 | | -``` gradle |
| 40 | +```groovy |
39 | 41 | implementation 'fr.inria.corese:corese-core:4.6.4-SNAPSHOT' |
40 | 42 | ``` |
41 | 43 |
|
42 | | -**JAR:** |
| 44 | +### Manual JAR |
| 45 | + |
| 46 | +Download the latest `.jar` file from: |
| 47 | + |
| 48 | +- [🔗 GitHub Releases](https://github.com/corese-stack/corese-core/releases) |
| 49 | +- [📦 Maven Central](https://central.sonatype.com/artifact/fr.inria.corese/corese-core) |
| 50 | + |
| 51 | +## 📖 Documentation |
| 52 | + |
| 53 | +- [Corese-Core api documentation](https://corese-stack.github.io/corese-core/v4.6.3/java_api/library_root.html) |
| 54 | + |
| 55 | +**W3C Standards:** |
43 | 56 |
|
44 | | -You can download the latest version of the **Corese-Core** JAR from the [releases page](https://github.com/corese-stack/corese-core/releases). |
| 57 | +- [RDF 1.1 Primer](https://www.w3.org/TR/rdf11-primer/) |
| 58 | +- [RDFS (RDF Schema)](https://www.w3.org/TR/rdf-schema/) |
| 59 | +- [OWL 2 RL](https://www.w3.org/TR/owl2-profiles/#OWL_2_RL) |
| 60 | +- [SPARQL 1.1 Query Language](https://www.w3.org/TR/sparql11-query/) |
| 61 | +- [SPARQL 1.1 Update](https://www.w3.org/TR/sparql11-update/) |
| 62 | +- [SHACL (Shapes Constraint Language)](https://www.w3.org/TR/shacl/) |
45 | 63 |
|
46 | | -## Documentation |
| 64 | +**Corese Extensions:** |
47 | 65 |
|
48 | | -Explore the available documentation on Corese-Core pages: [Corese-Core Documentation](https://corese-stack.github.io/corese-core/). |
| 66 | +- [STTL Documentation](https://files.inria.fr/corese/doc/sttl.html) |
| 67 | +- [SPARQL Rule Engine](https://files.inria.fr/corese/doc/rule.html) |
| 68 | +- [LDScript Reference](https://files.inria.fr/corese/doc/ldscript.html) |
49 | 69 |
|
50 | | -## Contributions and Community |
| 70 | +## 🤝 Contributing |
51 | 71 |
|
52 | | -We value contributions and feedback from the community! Here’s how you can engage: |
| 72 | +We welcome contributions! Here’s how to get involved: |
53 | 73 |
|
54 | | -- **Discussions:** For questions, ideas, or general discussion, join our [discussion forum](https://github.com/orgs/corese-stack/discussions). |
55 | | -- **Issue Tracker:** Report issues or suggest new features via our [issue tracker](https://github.com/corese-stack/corese-core/issues). |
56 | | -- **Pull Requests:** Contributions are welcome! Feel free to submit your code through [pull requests](https://github.com/corese-stack/corese-core/pulls). |
| 74 | +- [GitHub Discussions](https://github.com/orgs/corese-stack/discussions) |
| 75 | +- [Issue Tracker](https://github.com/corese-stack/corese-core/issues) |
| 76 | +- [Pull Requests](https://github.com/corese-stack/corese-core/pulls) |
57 | 77 |
|
58 | | -## Useful Links |
| 78 | +## 🔗 Useful Links |
59 | 79 |
|
60 | | -- **Mailing List:** <corese-users@inria.fr> |
61 | | -- **Join the Mailing List:** Send an email to <corese-users-request@inria.fr> with the subject: `subscribe` |
| 80 | +- [Corese Website](https://corese-stack.github.io/corese-core) |
| 81 | +- Mailing List: <corese-users@inria.fr> |
| 82 | +- Subscribe: Send an email to <corese-users-request@inria.fr> with the subject: `subscribe` |
0 commit comments