Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add credentials options to push task. #239

Closed
wants to merge 1 commit into from
Closed

Conversation

kul
Copy link
Contributor

@kul kul commented Jun 30, 2015

This allows adding credentials on-the-fly from a given file path. The credentials file contains a clojure map and has keys either exact url string or regex that finds itself in repo url. e.g.

{#"clojars" {:username "foo" :password "bar"}
 #"aws-private-repo-bucket" {:username "...." :passphrase "..."}
 "http://somerepo/release" {:username "...." :password "..."}}

@micha
Copy link
Contributor

micha commented Jul 10, 2015

Hi @kul sorry for the delayed response. This looks great, thanks! There is an edn argument type that we could use to parse the new argument, but it's not a big deal. If you want to update to use that it's cool, or we can just merge as is.

@micha micha added this to the 2.2.0 milestone Jul 10, 2015
@kul
Copy link
Contributor Author

kul commented Jul 11, 2015

@micha thanks for review. Right now the cred option in the task is a path to file which would contain the edn. Do you mean to modify it such that it can accept both path to edn file as well as edn itself?

@kul
Copy link
Contributor Author

kul commented Jul 22, 2015

Hi @micha, can we merge this as making cred accept file path as well as edn would be tricky. Moreover i dont see any use of making it accept edn as user would copy it from some file so why not just give the file path directly. WDYT?

@alandipert
Copy link
Contributor

@kul thanks for the contribution! After considering this again for 2.2.0, we decided to pass on this, because it seems a little too special-casey to be in the general-as-possible push task.

For global repo configuration, users could add repo config in a manner similar to Maven's settings.xml by putting a (set-env! :repositories ...) call in $BOOT_HOME/profile.boot.

For project-local config, users could do e.g.:

(set-env! :repositories (read-string (slurp "repos.edn")))

or they could make a short task to do the same.

I propose we leave this ticket open to attract future users. If it seems to attract more attention, then we'll know it could be general enough to go in push or that we should otherwise devise a solution.

Does that sound OK?

@alandipert alandipert modified the milestones: 2.2.0, 2.3.0 Aug 4, 2015
@kul
Copy link
Contributor Author

kul commented Aug 5, 2015

@alandipert (set-env! :repositories ...) makes perfect sense. Thanks for going through it.

@Deraen
Copy link
Contributor

Deraen commented Nov 8, 2015

This is effectively implemented using :repo-map option on #311

@Deraen Deraen closed this Nov 8, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants