本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
xtnt
/
boot-clj-boilerplate
關注
1
收藏
1
複製
0
程式碼
問題
0
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
stdout
master
sahabaishakhi
5 年之前
父節點
c928e66692
當前提交
c1b08b44c7
共有
3 個檔案被更改
,包括
34 行新增
和
0 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-0
build.boot
+12
-0
src/boot_build.clj
+12
-0
src/demo/boot_build.clj
+ 10
- 0
build.boot
查看文件
@@ -0,0 +1,10 @@
(set-env!
:resource-paths #{"src"}
:dependencies '[[me.raynes/conch "0.8.0"]])
(task-options!
pom {:project 'boot-clj-boilerplate
:version "0.1.0"}
jar {:manifest {"Foo" "bar"}})
(require '[demo.boot-build :refer :all])
+ 12
- 0
src/boot_build.clj
查看文件
@@ -0,0 +1,12 @@
(ns demo.boot-build
(:require [boot.core :as core]
[boot.task.built-in :as task]))
(core/deftask build
"Build my project."
[]
(comp (task/pom) (task/jar) (task/install)))
(core/deftask hello
[]
(println "hello"))
+ 12
- 0
src/demo/boot_build.clj
查看文件
@@ -0,0 +1,12 @@
(ns demo.boot-build
(:require [boot.core :as core]
[boot.task.built-in :as task]))
(core/deftask build
"Build my project."
[]
(comp (task/pom) (task/jar) (task/install)))
(core/deftask hello
[]
(println "hello"))
Write
Preview
Loading…
取消
儲存