Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish to Vaticle OSI maven repository #57

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/publish_maven.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ jobs:
- name: Publish package
run: gradle publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO_VATICLE_OSI_USERNAME: ${{ secrets.REPO_VATICLE_OSI_USERNAME }}
REPO_VATICLE_OSI_PASSWORD: ${{ secrets.REPO_VATICLE_OSI_PASSWORD }}
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,18 +119,16 @@ A complete tutorial for TypeDB (Grakn) version < 2.0 can be found [on Medium](ht

There is an [example repository](https://github.com/bayer-science-for-a-better-life/grami-example) for your convenience.

## Compatibility
## Compatibility Table

TypeDB Loader version == 1.0.0 is tested for:
- [Type DB](https://github.com/vaticle/typedb) == 2.5.0
| TypeDB Loader | TypeDB Client (internal) | TypeDB | TypeDB Cluster |
| :------------: | :---------------------: | :-------------: | :------------: |
| 1.1.0 to 1.2.0 | 2.8.0 | 2.8.x | N/A |
| 1.0.0 | 2.5.0 to 2.7.1 | 2.5.x to 2.7.x | N/A |
| 0.1.1 | 2.0.0 to 2.5.0 | 2.0.x to 2.4.x | N/A |
| <0.1 | 1.8.0 | 1.8.x | N/A |

GraMi (former name) version == 0.1.1 is tested for:
- [grakn-core](https://github.com/vaticle/typedb) == 2.0.1

Find the Readme for GraMi for grakn == 2.0.x [here](https://github.com/bayer-science-for-a-better-life/grami/blob/XXXXX/README.md)

GraMi version < 0.1.0 is tested for:
- [grakn-core](https://github.com/vaticle/typedb) >= 1.8.2
* [Type DB](https://github.com/vaticle/typedb)

Find the Readme for GraMi for grakn < 2.0 [here](https://github.com/bayer-science-for-a-better-life/grami/blob/b3d6d272c409d6c40254354027b49f90b255e1c3/README.md)

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ publishing {
}
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/typedb-osi/typedb-loader"
name = "VaticleOSIMaven"
url = "https://repo.vaticle.com/repository/osi-maven/"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
username = System.getenv("REPO_VATICLE_OSI_USERNAME")
password = System.getenv("REPO_VATICLE_OSI_PASSWORD")
}
}
}
Expand Down