How to execute package for one submodule only on Jenkins?

后端 未结 2 1867
轻奢々
轻奢々 2020-12-31 15:28

I have a sbt project with 4 modules: module-a, module-b, module-c, module-d.

Each module can be packaged as a WA

2条回答
  •  离开以前
    2020-12-31 15:52

    Quote the argument to project, i.e. project module-a, and don't use a dash before the name of the submodule.

    The entire command line for the Jenkins job would than be as follows:

    ./sbt "project module-a" clean update test
    

提交回复
热议问题