ArcBees / gwtquery

A jQuery clone for GWT, and much more.
MIT License
85 stars 38 forks source link

draggable and droppable plugins - status ? #334

Closed biancashouse closed 9 years ago

biancashouse commented 9 years ago

There are lots of places to find the draggable and droppable functionality; and I notice there is actually a version 1.1.0-SNAPSHOT in the repo.

This suggest to me that someone (Julian?) is still maintaining those two insanely useful plugins.

But there appears to be no corresponding project in the arcbees github.

Just wondering what the status is going forward. I was getting draggable and droppable included as part of the enhance plugin, but that seems to contain older versions. I tried the following in my pom, but they don't appear to be available in a repo ? So I could download the jars instead and install them manually into my local repo...

    <dependency>
        <groupId>com.googlecode.gwtquery.plugins</groupId>
        <artifactId>draggable</artifactId>
        <version>1.1.0-SNAPSHOT</version>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>com.googlecode.gwtquery.plugins</groupId>
        <artifactId>droppable</artifactId>
        <version>1.1.0-SNAPSHOT</version>
        <scope>provided</scope>
    </dependency>
jDramaix commented 9 years ago

I don't really have time to maintain these plugins, so it was decided to add these two plugins under the Arcbees umbrella support.

We haven't done anything yet but it should be done asap. Furthermore we are using these plugins in several projects so you can expect that they will be updated very soon.

@christiangoudreau @meriouma

biancashouse commented 9 years ago

ok I shall revert to using enhance-plugin-1.0.5, which contains:

draggable-1.0.4 droppable-1.0.8

Many thanks for the quick reply.