As far as I can tell there should be a 1.3.0 release available somewhere in a remote maven based repository that can be used.
When looking for a suitable repository on maven.org only the findbugs plugin is found at all?!
However, regardless of which url (and version of the linter plugin) is used in the gradle file for the repository and dependency the result is always the same.
Gradle file:
allprojects {
repositories {
maven {
url '<URL>'
}
}
}
dependencies {
//...
androidLint 'com.monits:android-linters:<VERSION>'
}
Result when running gradle clean build:
> Could not resolve com.monits:android-linters:<VERSION>
> Could not parse POM <URL>/com/monits/android-linters/<VERSION>/android-linters-<VERSION>.pom
> Could not find com.monits:java-pom:2.0-SNAPSHOT.
As far as I can tell there should be a 1.3.0 release available somewhere in a remote maven based repository that can be used.
When looking for a suitable repository on maven.org only the findbugs plugin is found at all?!
However, regardless of which url (and version of the linter plugin) is used in the gradle file for the repository and dependency the result is always the same.
Gradle file:
Result when running
gradle clean build: