Minor cleanup

This commit is contained in:
Erik C. Thauvin 2023-11-19 10:46:11 -08:00
parent 2701a439ae
commit 59416e4986
4 changed files with 36 additions and 14 deletions

View file

@ -7,6 +7,9 @@
<pattern value="com.example.ExampleBuild" method="dokkaGfm" />
<pattern value="com.example.ExampleBuild" method="dokkaJekyll" />
</component>
<component name="PDMPlugin">
<option name="skipTestSources" value="false" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" project-jdk-name="17" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build" />
</component>

View file

@ -71,13 +71,24 @@ public class CompileKotlinOperationBuild extends Project {
.artifactId("bld-kotlin")
.description("bld Kotlin Extension")
.url("https://github.com/rife2/bld-kotlin")
.developer(new PublishDeveloper().id("ethauvin").name("Erik C. Thauvin").email("erik@thauvin.net")
.url("https://erik.thauvin.net/"))
.license(new PublishLicense().name("The Apache License, Version 2.0")
.url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
.scm(new PublishScm().connection("scm:git:https://github.com/rife2/bld-kotlin.git")
.developerConnection("scm:git:git@github.com:rife2/bld-kotlin.git")
.url("https://github.com/rife2/bld-kotlin"))
.developer(
new PublishDeveloper()
.id("ethauvin")
.name("Erik C. Thauvin")
.email("erik@thauvin.net")
.url("https://erik.thauvin.net/")
)
.license(
new PublishLicense()
.name("The Apache License, Version 2.0")
.url("http://www.apache.org/licenses/LICENSE-2.0.txt")
)
.scm(
new PublishScm()
.connection("scm:git:https://github.com/rife2/bld-kotlin.git")
.developerConnection("scm:git:git@github.com:rife2/bld-kotlin.git")
.url("https://github.com/rife2/bld-kotlin")
)
.signKey(property("sign.key"))
.signPassphrase(property("sign.passphrase"));
}

View file

@ -277,7 +277,9 @@ public class DokkaOperation extends AbstractProcessOperation<DokkaOperation> {
}
/**
* Sets the global list of package configurations in format:
* Sets the global list of package configurations.
* <p>
* Using format:
* <ul>
* <li>matchingRegexp</li>
* <li>-deprecated</li>
@ -297,7 +299,9 @@ public class DokkaOperation extends AbstractProcessOperation<DokkaOperation> {
}
/**
* Sets the global list of package configurations in format:
* Sets the global list of package configurations.
* <p>
* Using format:
* <ul>
* <li>matchingRegexp</li>
* <li>-deprecated</li>

View file

@ -50,7 +50,7 @@ public class SourceSet {
private String sourceSetName_;
/**
* Sets the platform used for setting up analysis. Default is {@link AnalysisPlatform#JVM}
* Sets the platform used for setting up analysis. Default is {@link AnalysisPlatform#JVM JVM}
* <p>
* Platform to be used for setting up code analysis and {@code @sample} environment.
*
@ -276,7 +276,7 @@ public class SourceSet {
* Sets the display name of the source set, used both internally and externally.
* <p>
* The name is used both externally (for example, the source set name is visible to documentation readers) and
* internally (for example, for logging messages of {@link #reportUndocumented}.
* internally (for example, for logging messages of {@link #reportUndocumented}).
* <p>
* The platform name can be used if you don't have a better alternative.
*
@ -440,7 +440,9 @@ public class SourceSet {
/**
* Set the list of package source set configuration.
* <p>
* A set of parameters specific to matched packages within this source set in format:
* A set of parameters specific to matched packages within this source set.
* <p>
* Using format:
* <ul>
* <li>matchingRegexp</li>
* <li>-deprecated</li>
@ -462,7 +464,9 @@ public class SourceSet {
/**
* Set the list of package source set configuration.
* <p>
* A set of parameters specific to matched packages within this source set in format:
* A set of parameters specific to matched packages within this source set.
* <p>
* Using format:
* <ul>
* <li>matchingRegexp</li>
* <li>-deprecated</li>