이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
xtnt
/
boot-clj-boilerplate
보기
1
좋아요
1
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
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"))
쓰기
미리보기
불러오는 중...
취소
저장