We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 394045f commit 225a091Copy full SHA for 225a091
docs/configuration/basic_usage.md
@@ -63,17 +63,22 @@ project.version = scmVersion.version
63
For multi project builds the plugin has to be applied only on the root
64
project, but version has to be set also in submodules
65
66
-```
+```kotlin
67
plugins {
68
- id 'pl.allegro.tech.build.axion-release' version ''
+ id("pl.allegro.tech.build.axion-release") version <VERSION NUMBER>
69
}
70
71
scmVersion {
72
- // ...
+ // ...
73
74
75
-allprojects {
76
- project.version = scmVersion.version
+version = scmVersion.version
+// ...
77
+
78
+allprojects { // or subProjects
79
80
+ project.version = rootProject.version
81
82
83
```
84
0 commit comments