0

I am using the JetBrains Exposed library available here on Github.

The latest release was in November 2022 however, since then, there have been merged pull requests which have added additional api functionality.

At the moment my Gradle dependency is using version 0.41.1 (the November 2022 release). Is there any way to get access to the latest (pre-release) version of the library for use in my application?

Current Dependencies

    implementation("org.jetbrains.exposed:exposed-core:0.41.1")
    implementation("org.jetbrains.exposed:exposed-dao:0.41.1")
    implementation("org.jetbrains.exposed:exposed-jdbc:0.41.1")
    implementation("org.jetbrains.exposed:exposed-java-time:0.41.1")
mars8
  • 770
  • 1
  • 11
  • 25
  • 1
    Does this answer your question? [Is it possible to declare git repository as dependency in android gradle?](https://stackoverflow.com/questions/18748436/is-it-possible-to-declare-git-repository-as-dependency-in-android-gradle) – Benjamin W. Jul 21 '23 at 14:37
  • looks promising, will take a look – mars8 Jul 21 '23 at 18:36

1 Answers1

0

It's possible with jitpack.io. Please check the related FAQ section

Tapac
  • 1,889
  • 1
  • 14
  • 18
  • Do I need to include multiple lines for each dependency e.g. core, dao, jdbc , java-time? The faq only inlcudes one line `implementation 'com.github.JetBrains:Exposed:-SNAPSHOT'. An example with the latest snapshot would be much appreciated. – mars8 Jul 22 '23 at 13:03