You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I followed the example and it worked great. Used this method. clojure -Sdeps '{:deps {org.rssys/apptemplate {:git/tag "0.1.1" :git/sha "215be27" :git/url "https://github.com/redstarssystems/apptemplate.git"}}}' -Tnew create :template org.rssys/apptemplate :name com.example/app01
But when I created another project with my own project name and namespace...
For now I've just over-ridden certain values in the build.clj. My repo uses main instead of master. I also looked at adding a template/pom.xml template at the root level and added a reference to it in the defn uberjar in the build.cjl (as described in https://github.com/seancorfield/build-clj) (assoc :lib (:artifact project-env) :version (:artifact-version project-env) :src-pom "template/pom.xml" :main (:main-ns project-env)) that got me further but not all the way maybe.
I've tried the command you described: clojure -Sdeps '{:deps {org.rssys/apptemplate {:git/tag "0.1.1" :git/sha "215be27" :git/url "https://github.com/redstarssystems/apptemplate.git"}}}' -Tnew create :template org.rssys/apptemplate :name edu.myown.name/myownproject
I can't reproduce the error. Did you create new project in the same folder?
I followed the example and it worked great. Used this method.
clojure -Sdeps '{:deps {org.rssys/apptemplate {:git/tag "0.1.1" :git/sha "215be27" :git/url "https://github.com/redstarssystems/apptemplate.git"}}}' -Tnew create :template org.rssys/apptemplate :name com.example/app01
But when I created another project with my own project name and namespace...
clojure -Sdeps '{:deps {org.rssys/apptemplate {:git/tag "0.1.1" :git/sha "215be27" :git/url "https://github.com/redstarssystems/apptemplate.git"}}}' -Tnew create :template org.rssys/apptemplate :name edu.myown.name/myownproject
and go to
bb build
I somehow get the old com.example.app01 and app01Which makes sense because there's nothing there its in the new location.
The text was updated successfully, but these errors were encountered: