Minor cleanup
This commit is contained in:
parent
2701a439ae
commit
59416e4986
4 changed files with 36 additions and 14 deletions
|
@ -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"));
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue