File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
1
package io.github.typesafegithub.workflows.mavenbinding
2
2
3
3
import io.github.typesafegithub.workflows.actionbindinggenerator.domain.ActionCoords
4
- import io.github.typesafegithub.workflows.actionbindinggenerator.domain.fullName
5
4
6
5
internal fun ActionCoords.buildModuleFile () =
7
6
"""
8
7
{
9
8
"formatVersion": "1.1",
10
9
"component": {
11
10
"group": "$owner ",
12
- "module": "$fullName ",
11
+ "module": "$mavenName ",
13
12
"version": "$version ",
14
13
"attributes": {
15
14
"org.gradle.status": "release"
@@ -35,8 +34,8 @@ internal fun ActionCoords.buildModuleFile() =
35
34
"dependencies": [],
36
35
"files": [
37
36
{
38
- "name": "$fullName -$version .jar",
39
- "url": "$fullName -$version .jar",
37
+ "name": "$mavenName -$version .jar",
38
+ "url": "$mavenName -$version .jar",
40
39
"size": 1
41
40
}
42
41
]
@@ -55,8 +54,8 @@ internal fun ActionCoords.buildModuleFile() =
55
54
"dependencies": [],
56
55
"files": [
57
56
{
58
- "name": "$fullName -$version .jar",
59
- "url": "$fullName -$version .jar",
57
+ "name": "$mavenName -$version .jar",
58
+ "url": "$mavenName -$version .jar",
60
59
"size": 1
61
60
}
62
61
]
You can’t perform that action at this time.
0 commit comments