Skip to content

Commit 0470a2d

Browse files
authored
Merge pull request #9 from solonovamax/build/fix-project-naming
Fix gradle buildscript for releases
2 parents a3869ba + aa032e9 commit 0470a2d

File tree

6 files changed

+21
-3
lines changed

6 files changed

+21
-3
lines changed

buildSrc/src/main/kotlin/tectonic-common.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ plugins {
44

55
nyx {
66
info {
7-
name = "Tectonic"
8-
group = "com.dfsek"
9-
module = "tectonic"
7+
group = "com.dfsek.tectonic"
108
version = rootProject.version.toString()
119
description = """
1210
Tectonic is a powerful **read-only** Java configuration library for data-driven applications.

common/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ plugins {
55
`tectonic-publishing`
66
}
77

8+
nyx.info {
9+
name = "Tectonic Common"
10+
}
11+
812
dependencies {
913
implementation(libs.commons.io)
1014
}

lang/hocon/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ plugins {
55
`tectonic-publishing`
66
}
77

8+
nyx.info {
9+
name = "Tectonic HOCON"
10+
}
11+
812
dependencies {
913
api(projects.common)
1014

lang/json/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ plugins {
55
`tectonic-publishing`
66
}
77

8+
nyx.info {
9+
name = "Tectonic JSON"
10+
}
11+
812
dependencies {
913
api(projects.common)
1014

lang/toml/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ plugins {
55
`tectonic-publishing`
66
}
77

8+
nyx.info {
9+
name = "Tectonic TOML"
10+
}
11+
812
dependencies {
913
api(projects.common)
1014

lang/yaml/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ plugins {
55
`tectonic-publishing`
66
}
77

8+
nyx.info {
9+
name = "Tectonic YAML"
10+
}
11+
812
dependencies {
913
api(projects.common)
1014

0 commit comments

Comments
 (0)