File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load diff This file was deleted.
Original file line number Diff line number Diff line change 1+ plugins {
2+ id(" pl.allegro.tech.build.axion-release" ) version " 1.21.1"
3+ }
4+
5+ scmVersion {
6+ tag.prefix = " "
7+ useHighestVersion = true
8+ releaseOnlyOnReleaseBranches = true
9+ versionIncrementer(" incrementMinorIfNotOnRelease" , mapOf (
10+ " releaseBranchPattern" to " (?>release|(?>hot)?fix)/.+"
11+ )
12+ )
13+ branchVersionCreator = mapOf (
14+ " master" to " simple" ,
15+ " release/.*" to " simple" ,
16+ " .*" to " versionWithBranch"
17+ )
18+ }
19+
20+ group = " org.bool.java"
21+ version = scmVersion.version
22+
23+ subprojects {
24+ group = rootProject.group
25+ version = rootProject.version
26+ }
Load diff This file was deleted.
Original file line number Diff line number Diff line change 1+ plugins {
2+ id(" java-platform" )
3+ }
4+
5+ javaPlatform {
6+ allowDependencies()
7+ }
8+
9+ dependencies {
10+ api(platform(" org.springframework.boot:spring-boot-dependencies:3.2.3" ))
11+ constraints {
12+ api(" commons-io:commons-io:2.15.1" )
13+ api(" org.apache.commons:commons-collections4:4.4" )
14+ }
15+ }
You can’t perform that action at this time.
0 commit comments