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:
- squash-core: for squash barebones
- squash-h2: for squash H2DB flavor
- squash-jdbc: for squash JDBC
- squash-mysql: for squash for MySQL
- squash-postgres: for squash for postgres
- squash-sqlite: for squash for SQlite
Thank you!
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:
That, though, is not correct as it does not retrieve squash jars at all. Instead, the correct would be to add:
Where #MODULE# should be one of the following:
Thank you!