Our system consists of a set of micro services written in clojure.
Although we have codes shared between these clojure projects, we have consciously decided against shared libraries.
By doing in this way, we gained a greater flexibility to adjust/change them.
At the beginning, we synchronized those shared code by hand, which was of course not very comfortable.
This is the reason why we wrote this plugin sync
to make this task automatically.
sync
plugin has been successfully tested with the Leiningen version 2.7.1
. If you have any issue dealing with Leiningen, please upgrade your project with the Leiningen version greater or equal to 2.7.1
.
sync
is a Leiningen plugin to synchronize shared codebase between clojure projects.
sync
makes a strong assumption about the file structure of the shared projects which are created by Leiningen, like this:
container-folder/
+-- project-1
+-- src
¦ +-- name.space.1
¦ +-- name.space.2
+-- test
¦ +-- name.space-test.1
¦ +-- name.space-test.2
+-- project.clj
+-- project-2
+-- src
¦ +-- name.space.1
¦ +-- name.space.2
+-- test
¦ +-- name.space-test.1
¦ +-- name.space-test.2
+-- project.clj
+-- project-3
+-- src
¦ +-- name.space.1
¦ +-- name.space.2
+-- test
¦ +-- name.space-test.1
¦ +-- name.space-test.2
+-- project.clj
For example, if some code change is made on the name.space.1
of the project-1
, we want to apply this change later on all others projects containing name.space.1
.
container-folder/
+-- project-1
+-- src
¦ +-- name.space.1 ---------+
¦ +-- name.space.2 |
+-- project.clj |
+-- project-2 |
+-- src |
¦ +-- name.space.1 <--sync--+
+-- project.clj |
+-- project-3 |
+-- src |
¦ +-- name.space.1 <--sync--+
¦ +-- name.space.3
+-- project.clj
To specify which projects should be synchronized, a search string must be passed as argument to sync
. A search string can be a string concatnation of projects or a java's regex. For example:
Options:
Define :ns-sync
configuration in the project.clj of each target project. It has the following options:
:test-cmd
specifies which leiningen tasks will be executed to test target projects after synchronizing.:namespaces
specifies the namespaces to be synchronized between shared projects.:resources
specifies the resources to be synchronized between shared projects.A namespace/resource will be synchronized between 2 projects if and only if they are defined in the both project.clj.
The :ns-sync
configuration can be specified like that:
:ns-sync { :test-cmd [["./lein.sh" "profile-1" "test"]
["./lein.sh" "profile-2" "test"]]
:namespaces ["name.space.1" "name.space.2"]
:resources ["resource.1" "resource.2"]}
In order to synchronize namespaces and resources between projects, run in the current source project:
$ cd container-folder/project-1
$ lein sync "project-2,project-3"
*********************** UPDATE NAMESPACES ***********************
*
* Update name.space.1 to the project project-2
* Update name.space.1 to the project project-3
*********************** UPDATE RESOURCES ***********************
*
* Update "resources.1 to the project project-2
* Update "resources.1 to the project project-3
****** Executing tests of project-2 ******
... Executing ./lein.sh profile-1 test
... Executing ./lein.sh profile-2 test
****** Executing tests of project-3 ******
... Executing ./lein.sh profile-1 test
... Executing ./lein.sh profile-2 test
| :project | :result | :./lein.sh clean | :./lein.sh test |
|----------+---------+------------------+-----------------|
|project-2 | :passed | :passed | :passed |
|----------------------------------------------------------
|project-3 | :passed | :passed | :passed |
|---------------------------------------------------------|
* Tests are passed on project(s): project-2,project-3
To see changes : lein sync project-2,project-3 --status
To commit : lein sync project-2,project-3 --commit
To push : lein sync project-2,project-3 --push
sync
will update the predefined namespaces/resources from project-1 to project-2 and project-3.
It updates only the namespace, which has been defined in both source project and target project.
If a namespace is only defined in the source or target project, it will be ignored.
Afterwards sync
will execute tests, which are defined in :test-cmd
on project-2 project-3 and project-4, to make sure that the update did not break anything.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close