File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed
Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -15,23 +15,23 @@ Sources was not changed almost, only build script adjusted
1515
1616## Conception description
1717
18- ** Composite Build** is externalization of build by put dependencies and plugins into separate Git repository
19- (which added to project as [ Git submodule] ( .gitmodules ) )
18+ ` Composite Build ` is externalization of build by put dependencies and plugins into separate Git repository
19+ (which should be added as [ Git submodule] ( .gitmodules ) of project )
2020
21- After that [ build script] ( build.gradle.kts ) looks like this:
21+ After that [ build script] ( build.gradle.kts ) will looks like this:
2222
2323```
2424import by.andd3dfx.build.*
2525import by.andd3dfx.build.Plugins.Companion.applyPlugins
2626
2727service(version = "0.0.1") {
2828 dependencies {
29- springBoot {
29+ springBoot(project) {
3030 web()
3131 test()
3232 dataJpa()
3333 validation()
34- ...
34+ // ...
3535 }
3636
3737 lombok()
@@ -44,7 +44,7 @@ service(version = "0.0.1") {
4444 flywayCore()
4545 testContainers()
4646 postgresTestContainers()
47- ...
47+ // ...
4848
4949 applyPlugins {
5050 springBoot()
@@ -63,7 +63,7 @@ git submodule update
6363## How to build application:
6464
6565```
66- gradlew clean build
66+ ./ gradlew clean build
6767```
6868
6969## Run functional tests:
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ service(version = "0.0.1") {
88 test()
99 dataJpa()
1010 validation()
11+ // ...
1112 }
1213
1314 lombok()
@@ -20,6 +21,7 @@ service(version = "0.0.1") {
2021 flywayCore()
2122 testContainers()
2223 postgresTestContainers()
24+ // ...
2325
2426 applyPlugins {
2527 springBoot()
You can’t perform that action at this time.
0 commit comments