Hi, is it possible to use the classes of airbyte v...
# ask-community-for-troubleshooting
m
Hi, is it possible to use the classes of airbyte via airbyte.mycloudrepo.io/public/repositories/airbyte-public-jars ? I'm trying to add them in my gradle to build my destination (that I build outside of the airbyte repo) but it never recognizes the airbyte classes. Here's a part of what I did in my gradle.build
Copy code
repositories {
    mavenCentral()
    maven {
        url '<https://airbyte.mycloudrepo.io/public/repositories/airbyte-public-jars/>'
    }
}
m
No, Airbyte currently doesn't upload to Maven. Maybe this repos are tests executed last year.
m
ok thank you
c
@Maëlise Castel, were you able to get your destination to build outside of the airbyte repo? If so, curious how -- this is a pain for me as well right now
m
I couldn't really, what I did is that I put my destination in the airbyte repo, it is not that heavy. You can remove everything not useful for you if you want to have a lighter repo. If you have any questions or remarks, I'd be glad to share things with you
@Chasen Sherman I finally decided to implement my destination in python to easily build it outside the airbyte git repo
👍 1