File tree 2 files changed +1
-21
lines changed
2 files changed +1
-21
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,5 @@ val Project.isSnapshot: Provider<Boolean>
28
28
val Project .isRelease: Provider <Boolean >
29
29
get() = provider {
30
30
val tag = tasks.getByName(" tag" , TagTask ::class )
31
- /* all fakers have their own tags, so checking if tag.didWork is enough for them,
32
- ':core' shares the tag with 'root', ':bom' and ':cli-bot' modules,
33
- and hence the tag might already exist and didWork will return false for ':core' */
34
- val tagCreated = if (project.name != " core" ) tag.didWork else tag.didWork || tag.tagExists
35
- ! isDev.get() && ! isSnapshot.get() && tagCreated
31
+ (! isDev.get() && ! isSnapshot.get()) && (tag.didWork || tag.tagExists)
36
32
}
Original file line number Diff line number Diff line change @@ -61,20 +61,4 @@ settings.extensions.configure<SemverPluginExtension>("semantic-versioning") {
61
61
version {
62
62
useSnapshots = true
63
63
}
64
- monorepo {
65
- fakers.forEach { f ->
66
- module(" :faker:$f " ) {
67
- tag {
68
- prefix = TagPrefix (" faker-$f -v" )
69
- }
70
- }
71
- }
72
- extensions.filter { ! it.endsWith(" -test" ) }.forEach { e ->
73
- module(" :extension:$e " ) {
74
- tag {
75
- prefix = TagPrefix (" ext-$e -v" )
76
- }
77
- }
78
- }
79
- }
80
64
}
You can’t perform that action at this time.
0 commit comments