Skip to content

Commit bedaf15

Browse files
committed
switching to deps-library
1 parent 17360c1 commit bedaf15

File tree

6 files changed

+19
-41
lines changed

6 files changed

+19
-41
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ jobs:
4444
- run: echo Working on ${{ github.ref }}
4545

4646
- name: deploy to clojars
47-
run: clojure -A:depstar && env CLOJARS_USERNAME=jiyinyiyong CLOJARS_PASSWORD=${{ secrets.CLOJARS_PASSWORD }} clojure -A:deploy
47+
run: env CLOJARS_USERNAME=jiyinyiyong CLOJARS_PASSWORD=${{ secrets.CLOJARS_PASSWORD }} clojure -A:release

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
.nrepl-port
99

1010
.DS_Store
11+
pom.xml

deps.edn

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11

2-
{:paths ["src"]
3-
:aliases {:depstar {:extra-deps {seancorfield/depstar {:mvn/version "0.5.2"}}
4-
:main-opts ["-m" "hf.depstar.jar" "target/lilac.jar"]}
5-
:deploy {:extra-deps {deps-deploy {:mvn/version "RELEASE"}}
6-
:main-opts ["-m" "deps-deploy.deps-deploy" "deploy" "target/lilac.jar"]}
7-
:install {:extra-deps {deps-deploy {:mvn/version "RELEASE"}}
8-
:main-opts ["-m" "deps-deploy.deps-deploy" "install" "target/lilac.jar"]}}}
2+
{
3+
:paths ["src"]
4+
:aliases {
5+
:release {
6+
:extra-deps {
7+
appliedscience/deps-library {:mvn/version "0.3.2"}
8+
}
9+
:main-opts ["-m" "deps-library.release"]
10+
}
11+
}
12+
}

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
"description": "ClojureScript workflow using Calcit Editor",
55
"main": "index.js",
66
"scripts": {
7-
"m2": "clojure -A:depstar && clojure -A:install",
8-
"deploy": "clojure -A:depstar && clojure -A:deploy",
7+
"deploy": "clj -A:release",
98
"watch": "shadow-cljs watch client",
109
"serve": "http-server dist -s",
1110
"build-cdn": "shadow-cljs clj-run build.main/build-cdn",

pom.xml

Lines changed: 0 additions & 31 deletions
This file was deleted.

release.edn

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{:version "0.0.1"
2+
:group-id "mvc-works"
3+
:artifact-id "calcit-workflow"
4+
:skip-tag true
5+
:scm-url "https://github.com/mvc-works/calcit-workflow"}

0 commit comments

Comments
 (0)