Skip to content

Commit

Permalink
Update deps and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
oakes committed Jul 16, 2022
1 parent ca1928c commit 8aa4f7d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ In addition to playing music, you can [export to mp3, wav, or midi](https://oake

You can generate a new project with the [Clojure CLI Tool](https://clojure.org/guides/getting_started#_clojure_installer_and_cli_tools):

`clj -Sdeps "{:deps {leiningen/leiningen {:mvn/version \""2.9.0\""}}}" -m leiningen.core.main new edna my-music`
`clj -Sdeps "{:deps {leiningen/leiningen {:mvn/version \""2.9.0\""}}}" -M -m leiningen.core.main new edna my-music`

It will contain a README with all the commands you need to use.

**NOTE:** OpenJDK 11 is required! Newer versions of the JDK removed the `com.sun.media.sound.*` classes.

## Documentation

* Check out [the example scores](https://github.com/oakes/edna/tree/master/examples)
Expand Down
6 changes: 3 additions & 3 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
defexample/defexample {:mvn/version "1.7.0"}
expound/expound {:mvn/version "0.7.0"}
org.bitbucket.daveyarwood/fluid-r3 {:mvn/version "0.1.1"}}
:aliases {:dev {:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.764"}
dynadoc/dynadoc {:mvn/version "RELEASE"}
com.bhauman/figwheel-main {:mvn/version "0.2.9"}}
:aliases {:dev {:extra-deps {dynadoc/dynadoc {:mvn/version "RELEASE"}
org.clojure/clojurescript {:mvn/version "1.11.4"}
com.bhauman/figwheel-main {:mvn/version "0.2.18"}}
:extra-paths ["dev-resources"]
:main-opts ["dev.clj"]}
:prod {:extra-deps {leiningen/leiningen {:mvn/version "2.9.0"}}
Expand Down
2 changes: 1 addition & 1 deletion template/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject edna/lein-template "1.6.0.10"
(defproject edna/lein-template "1.6.0.11"
:description "A template for making edna projects"
:url "https://github.com/oakes/edna"
:license {:name "Public Domain"
Expand Down
2 changes: 2 additions & 0 deletions template/src/leiningen/new/edna/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ To play the song once:
To build an mp3:

`clj -M prod.clj mp3`

**NOTE:** OpenJDK 11 is required! Newer versions of the JDK removed the `com.sun.media.sound.*` classes.
4 changes: 2 additions & 2 deletions template/src/leiningen/new/edna/deps.edn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{:paths ["src" "resources"]
:deps {org.clojure/clojurescript {:mvn/version "1.10.764"}
com.bhauman/figwheel-main {:mvn/version "0.2.9"}
:deps {org.clojure/clojurescript {:mvn/version "1.11.4"}
com.bhauman/figwheel-main {:mvn/version "0.2.18"}
edna/edna {:mvn/version "1.6.0"}}}

0 comments on commit 8aa4f7d

Please sign in to comment.