Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions buildSrc/src/main/kotlin/tectonic-common.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ plugins {

nyx {
info {
name = "Tectonic"
group = "com.dfsek"
module = "tectonic"
group = "com.dfsek.tectonic"
version = rootProject.version.toString()
description = """
Tectonic is a powerful **read-only** Java configuration library for data-driven applications.
Expand Down
4 changes: 4 additions & 0 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ plugins {
`tectonic-publishing`
}

nyx.info {
name = "Tectonic Common"
}

dependencies {
implementation(libs.commons.io)
}
4 changes: 4 additions & 0 deletions lang/hocon/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ plugins {
`tectonic-publishing`
}

nyx.info {
name = "Tectonic HOCON"
}

dependencies {
api(projects.common)

Expand Down
4 changes: 4 additions & 0 deletions lang/json/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ plugins {
`tectonic-publishing`
}

nyx.info {
name = "Tectonic JSON"
}

dependencies {
api(projects.common)

Expand Down
4 changes: 4 additions & 0 deletions lang/toml/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ plugins {
`tectonic-publishing`
}

nyx.info {
name = "Tectonic TOML"
}

dependencies {
api(projects.common)

Expand Down
4 changes: 4 additions & 0 deletions lang/yaml/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ plugins {
`tectonic-publishing`
}

nyx.info {
name = "Tectonic YAML"
}

dependencies {
api(projects.common)

Expand Down
Loading