Skip to content

Commit

Permalink
Make ContextlessHtmlBuilder public
Browse files Browse the repository at this point in the history
  • Loading branch information
BierDav committed Sep 8, 2024
1 parent fa02777 commit d791b89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions buildSrc/src/main/kotlin/maven-publish-script.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,10 @@ mavenPublishing {

tasks.withType<DokkaTaskPartial>().configureEach {
dokkaSourceSets.configureEach {
displayName.set("kotlinmailer-$name")
documentedVisibilities.set(setOf(Visibility.PUBLIC, Visibility.PROTECTED))

// Read docs for more details: https://kotlinlang.org/docs/dokka-gradle.html#source-link-configuration
sourceLink {
val exampleDir = "https://github.com/$githubProject/tree/master/packages"
val exampleDir = "https://github.com/$githubProject/tree/master/"

localDirectory.set(rootProject.projectDir)
remoteUrl.set(URI(exampleDir).toURL())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import kotlinx.html.TagConsumer
import kotlinx.html.stream.appendHTML
import org.simplejavamail.api.email.EmailPopulatingBuilder

private typealias ContextlessHtmlBuilder = TagConsumer<StringBuilder>.() -> StringBuilder
typealias ContextlessHtmlBuilder = TagConsumer<StringBuilder>.() -> StringBuilder

/**
* Set the html of the message.
Expand Down

0 comments on commit d791b89

Please sign in to comment.