Skip to content

Commit

Permalink
Fix publishing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rock3r committed Aug 16, 2023
1 parent 437cfba commit 10b6021
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
8 changes: 0 additions & 8 deletions buildSrc/src/main/kotlin/jewel-publish.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,6 @@ publishing {
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
}
}
developers {
developer {
name.set("Lamberto Basti")
email.set("[email protected]")
organization.set("JetBrains")
organizationUrl.set("https://www.jetbrains.com/")
}
}
scm {
connection.set("scm:git:https://github.com/JetBrains/jewel.git")
developerConnection.set("scm:git:https://github.com/JetBrains/jewel.git")
Expand Down
12 changes: 12 additions & 0 deletions themes/int-ui/int-ui-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,15 @@ intelliJThemeGenerator {
ideaVersion(ideaVersion)
}
}

tasks {
named("dokkaHtml") {
dependsOn("generateIntUiDarkTheme")
dependsOn("generateIntUiLightTheme")
}
named<Jar>("sourcesJar") {
dependsOn("generateIntUiDarkTheme")
dependsOn("generateIntUiLightTheme")
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
}

0 comments on commit 10b6021

Please sign in to comment.