bauerca / drag-sort-listview

Android ListView with drag and drop reordering.
3.2k stars 1.44k forks source link

Maven Dependency cannot be found #114

Open edatkinvey opened 10 years ago

edatkinvey commented 10 years ago
    <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.

SeanPONeil commented 10 years ago

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>