simpligility / maven-repository-tools

Tools for interacting with Maven repositories
Eclipse Public License 1.0
137 stars 66 forks source link

Feature to deploy a full local repository folder #12

Closed mosabua closed 8 years ago

mosabua commented 9 years ago

without any retrieval prior to it. Just take it as it is and deploy.

mosabua commented 9 years ago

Basically omit the resolving part of the tool and just do the upload/deploy. Problem would be potential snapshot and release version mix stuff. But that might be a general problem anyway.

mosabua commented 9 years ago

The API internally can already do this. Just need to make it configurable to skip the resolving and just take a source folder. Probably can do similar approah for source as we do for target where we overload the parameter. E.g. if the source url is a file location... dont worry about resolving .. just take the lot.

In the longer run this can replace the Maven Android SDK Deployer to some degree and can be used as a library call in the Android Maven Plugin. See https://github.com/simpligility/android-maven-plugin/issues/566

mosabua commented 8 years ago

Now implemented