-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
publish empty source and javadocs jars for plugin marker (#118)
* make test helpers more reusable * publish empty source and javadocs jars for plugin marker
- Loading branch information
1 parent
b77782a
commit 9ef18be
Showing
3 changed files
with
46 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/main/kotlin/com/vanniktech/maven/publish/tasks/EmptyJavadocsJar.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.vanniktech.maven.publish.tasks | ||
|
||
import org.gradle.jvm.tasks.Jar | ||
|
||
@Suppress("UnstableApiUsage") | ||
open class EmptyJavadocsJar : Jar() { | ||
|
||
init { | ||
archiveClassifier.set("javadoc") | ||
} | ||
} |