drag-sort-listview icon indicating copy to clipboard operation
drag-sort-listview copied to clipboard

Maven Dependency cannot be found

Open edatkinvey opened this issue 11 years ago • 1 comments

    <dependency>
        <groupId>com.mobeta.android.dslv</groupId>
        <artifactId>drag-sort-listview</artifactId>
        <version>0.6.1-SNAPSHOT</version>
        <type>apklib</type>
    </dependency>

cannot resolve, says version does not exist. When searching maven central, cannot find com.mobeta.android.dslv

Was it removed from maven central? If so, please remove it from the readme.

Was it renamed? If so, please update readme.

edatkinvey avatar Dec 03 '13 20:12 edatkinvey

The Readme doesn't state that the library was ever in Maven Central. If you run mvn clean install you can install the library to your local repository and the dependency will resolve.

Someone was kind enough to post a version of drag-sort-listview to Maven Central however, although I recommend going the local repository route so you know what version you are using. To use the Maven Central version use

<dependency>
    <groupId>asia.ivity.android</groupId>
    <artifactId>drag-sort-listview</artifactId>
    <version>1.0</version>
</dependency>

SeanPONeil avatar Jan 31 '14 16:01 SeanPONeil