orangy / squash

SQL access DSL for Kotlin
265 stars 16 forks source link

Bintray with incorrect information for adding squash #7

Open thilux opened 6 years ago

thilux commented 6 years ago

Hi,

I have added this issue on bintray as a review comment directly but I decided to bring it here also in case the the former is not looked at.

In bintray, it is said that to add squash to our project using gradle (in my case) you are only required to add the following to your build gradle:

compile 'org.jetbrains.squash:squash:0.2.3'

That, though, is not correct as it does not retrieve squash jars at all. Instead, the correct would be to add:

compile 'org.jetbrains.squash:#MODULE#:0.2.3'

Where #MODULE# should be one of the following:

Thank you!

raderio commented 5 years ago

I also can not import the library I have

repositories {
    mavenCentral()
    jcenter()
}
 compile group: 'org.jetbrains.squash', name: 'squash-postgres', version: '0.2.4'

I get "Unable to resolve org.jetbarins.squash"

raderio commented 5 years ago

We need to add

maven { url "https://dl.bintray.com/kotlin/squash" }