Compare commits

...

5 Commits

Author SHA1 Message Date
renovate[bot]
fbfe01f436 Update kotlin monorepo to v2.3.10 2026-02-05 09:04:37 +00:00
22b22c48f4 small fix in github_publishing 2026-01-24 19:11:41 +06:00
52f18b234d revert nmcp version 2026-01-24 18:07:22 +06:00
4d9708b53f Add allowEmptyAggregation to build.gradle 2026-01-24 16:29:07 +06:00
91f3516c8f Merge pull request #118 from InsanusMokrassar/1.6.0
1.6.0
2026-01-24 16:09:54 +06:00
2 changed files with 10 additions and 4 deletions

View File

@@ -1,9 +1,15 @@
interface InjectedExecOps {
@Inject //@javax.inject.Inject
ExecOperations getExecOps()
}
private String getCurrentVersionChangelog() {
OutputStream changelogDataOS = new ByteArrayOutputStream()
exec {
def injected = project.objects.newInstance(InjectedExecOps)
injected.execOps.exec {
commandLine 'chmod', "+x", './changelog_parser.sh'
}
exec {
injected.execOps.exec {
standardOutput = changelogDataOS
commandLine './changelog_parser.sh', "${project.version}", 'CHANGELOG.md'
}

View File

@@ -1,9 +1,9 @@
[versions]
kotlin = "2.3.0"
kotlin = "2.3.10"
kotlin-gradle-plugin = "8.12.+"
nmcp = "1.4.3"
nmcp = "1.2.1"
versions = "0.53.0"
dokka = "2.1.0"