Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kumarshantanu/lein-localrepo
Work with local Maven repository
https://github.com/kumarshantanu/lein-localrepo
Last synced: 12 days ago
JSON representation
Work with local Maven repository
- Host: GitHub
- URL: https://github.com/kumarshantanu/lein-localrepo
- Owner: kumarshantanu
- Created: 2011-07-11T18:28:28.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2017-06-20T21:40:46.000Z (over 7 years ago)
- Last Synced: 2024-10-13T10:26:49.165Z (about 1 month ago)
- Language: Clojure
- Homepage:
- Size: 32.2 KB
- Stars: 216
- Watchers: 10
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
Awesome Lists containing this project
README
# lein-localrepo
Leiningen plugin to work with local Maven repository.
## Installation
### Lein 2 users
The recommended way is to install as a global plugin in `~/.lein/profiles.clj`
(for Windows users `%USERPROFILE%\.lein\profiles.clj`):{:user {:plugins [[lein-localrepo "0.5.4"]]}}
You may also install as a project plugin in `project.clj`:
:plugins [[lein-localrepo "0.5.4"]]
### Lein 1.x users
Either install as a plugin:
$ lein plugin install lein-localrepo "0.3"
Or, include as a dev-dependency:
:dev-dependencies [lein-localrepo "0.3"]
## Usage
### Guess Leiningen (Maven) coordinates of a file
$ lein localrepo coords
Example:
$ lein localrepo coords foo-bar-1.0.6.jar
Output:
foo-bar-1.0.6.jar foo-bar/foo-bar 1.0.6
### Install artifacts to local Maven repository
$ lein localrepo install [-r repo-path] [-p pom-file] <[groupId/]artifactId>
If no POM file is specified, a minimal POM will be automatically generated.
Examples:
$ lein localrepo install foo-1.0.6.jar com.example/foo 1.0.6
$ lein localrepo install foomatic-1.3.9.jar foomatic 1.3.9
$ lein localrepo coords /tmp/foobar-1.0.0-SNAPSHOT.jar | xargs lein localrepo install### List artifacts in local Maven repository:
$ lein localrepo list [-r repo-path] [-s | -f | -d]
Examples:
$ lein localrepo list # lists all artifacts, all versions
$ lein localrepo list -s # lists all artifacts with description
$ lein localrepo list -f # lists all artifacts and filenames
$ lein localrepo list -d # lists all artifacts with detail### Remove artifacts from local Maven repository (Not Yet Implemented):
$ lein localrepo remove <[groupId/]artifactId> []
Examples:
$ lein localrepo remove com.example/foo # removes all versions
$ lein localrepo remove foomatic # removes all versions
$ lein localrepo remove com.example/foo 1.0.3 # removes only specified versionNote:
As an alternative while this feature is being implemented, removing artifacts is composed of two steps:
First, find the path to the artifact with `lein classpath | tr ":" "\n" | grep m2.*`.
Second, delete the directory of that artifact from the group ID or the root of that artifact.## Getting in touch
On Twitter: [@kumarshantanu](http://twitter.com/kumarshantanu)
On Leiningen mailing list: [http://groups.google.com/group/leiningen](http://groups.google.com/group/leiningen)
## License
Copyright (C) 2011-2017 Shantanu Kumar
Distributed under the Eclipse Public License, the same as Clojure.