Skip to content

Commit

Permalink
remove incubating annotation (#727)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielittner authored Mar 1, 2024
1 parent 6fb61cb commit 7009c19
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ abstract class MavenPublishBaseExtension(
* Kotlin Multiplatform projects the given [artifactId] is used together with the platform targets resulting in
* artifactIds like `[artifactId]-jvm`.
*/
@Incubating
fun coordinates(groupId: String? = null, artifactId: String? = null, version: String? = null) {
groupId?.also { groupId(it) }
artifactId?.also { artifactId(it) }
Expand Down Expand Up @@ -234,7 +233,6 @@ abstract class MavenPublishBaseExtension(
* See the [Gradle publishing guide](https://docs.gradle.org/current/userguide/publishing_maven.html#sec:modifying_the_generated_pom)
* for how to use it.
*/
@Incubating
fun pom(configure: Action<in MavenPom>) {
project.mavenPublications { publication ->
// TODO without afterEvaluate https://github.com/gradle/gradle/issues/12259 will happen
Expand Down Expand Up @@ -350,7 +348,6 @@ abstract class MavenPublishBaseExtension(
* Configures a [Platform] which will automatically set up the artifacts that should get published, including javadoc
* and sources jars depending on the option.
*/
@Incubating
fun configure(platform: Platform) {
this.platform.set(platform)
this.platform.finalizeValue()
Expand Down

0 comments on commit 7009c19

Please sign in to comment.