change setup
This commit is contained in:
parent
ce50cb81de
commit
f73d246d39
3 changed files with 12 additions and 21 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,3 +1,7 @@
|
|||
.pybuilder/
|
||||
__pycache__/
|
||||
target/
|
||||
|
||||
target/
|
||||
|
||||
*.iml
|
||||
.idea/
|
||||
|
|
22
project.clj
22
project.clj
|
@ -1,27 +1,15 @@
|
|||
(defproject dda/dda-config-commons "2.0.0-SNAPSHOT"
|
||||
:description "common utils for dda config"
|
||||
(defproject dda/k8s-mastodon-bot "0.1.0-SNAPSHOT"
|
||||
:description "provisioning mastodon-bot on k8s"
|
||||
:url "https://www.domaindrivenarchitecture.org"
|
||||
:license {:name "Apache License, Version 2.0"
|
||||
:url "https://www.apache.org/licenses/LICENSE-2.0.html"}
|
||||
:dependencies [[org.clojure/clojure "1.10.0"]
|
||||
[aero "1.1.6"]]
|
||||
:dependencies [[org.clojure/clojure "1.10.0"]]
|
||||
:source-paths ["main/src"]
|
||||
:resource-paths ["main/resources"]
|
||||
:repositories [["snapshots" :clojars]
|
||||
["releases" :clojars]]
|
||||
:deploy-repositories [["snapshots" :clojars]
|
||||
["releases" :clojars]]
|
||||
:profiles {:dev {:source-paths ["integration/src"
|
||||
"test/src"
|
||||
"uberjar/src"]
|
||||
:resource-paths ["integration/resources"
|
||||
"test/resources"]
|
||||
:dependencies
|
||||
[[org.clojure/test.check "0.10.0-alpha4"]
|
||||
[ch.qos.logback/logback-classic "1.3.0-alpha4"]
|
||||
[org.slf4j/jcl-over-slf4j "1.8.0-beta4"]
|
||||
[dda/data-test "0.1.1"]]}
|
||||
:test {:test-paths ["test/src"]
|
||||
:profiles {:test {:test-paths ["test/src"]
|
||||
:resource-paths ["test/resources"]
|
||||
:dependencies [[dda/data-test "0.1.1"]]}}
|
||||
:local-repo-classpath true)
|
||||
:dependencies [[dda/data-test "0.1.1"]]}})
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{:source-paths ["main/src/"
|
||||
"main/test"]
|
||||
:dependencies [[aero "1.1.6"]]
|
||||
:builds {:app {:target :node-script
|
||||
:output-to "target/config-commons.js"
|
||||
:main dda.config.commons.core/helloworld
|
||||
:output-to "target/k8s-mastodon-bot.js"
|
||||
:main todo
|
||||
:compiler-options {:optimizations :simple}}}}
|
||||
|
|
Loading…
Reference in a new issue