Skip to content

Commit 016b94a

Browse files
committed
Adjust README
1 parent 6c7b344 commit 016b94a

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.MD

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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
```
2424
import by.andd3dfx.build.*
2525
import by.andd3dfx.build.Plugins.Companion.applyPlugins
2626
2727
service(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:

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)