Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 121 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

plugins {
id 'com.netflix.nebula.plugin-plugin' version '23.+'
id 'com.netflix.nebula.plugin-plugin' version '25.+'
}

description 'Gradle plugin to ease use of ivy-publish and maven-publish'
Expand Down Expand Up @@ -69,6 +69,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.maven.license.MavenApacheLicensePlugin'
tags.set(['nebula', 'publish', 'maven', 'apache', 'license'])
compatibility {
features {
configurationCache = true
}
}
}

mavenBasePublish {
Expand All @@ -77,6 +82,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.maven.MavenBasePublishPlugin'
tags.set(['nebula', 'publish', 'maven'])
compatibility {
features {
configurationCache = true
}
}
}

mavenDeveloper {
Expand All @@ -85,6 +95,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.maven.MavenDeveloperPlugin'
tags.set(['nebula', 'publish', 'maven'])
compatibility {
features {
configurationCache = true
}
}
}

mavenManifest {
Expand All @@ -93,6 +108,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.maven.MavenManifestPlugin'
tags.set(['nebula', 'publish', 'maven'])
compatibility {
features {
configurationCache = true
}
}
}

mavenNebulaPublish {
Expand All @@ -101,6 +121,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.maven.MavenNebulaPublishPlugin'
tags.set(['nebula', 'publish', 'maven'])
compatibility {
features {
configurationCache = true
}
}
}

mavenPublish {
Expand All @@ -109,6 +134,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.maven.MavenPublishPlugin'
tags.set(['nebula', 'publish', 'maven'])
compatibility {
features {
configurationCache = true
}
}
}

mavenShadowPublish {
Expand All @@ -117,6 +147,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.maven.MavenShadowPublishPlugin'
tags.set(['nebula', 'publish', 'maven', 'shadow'])
compatibility {
features {
configurationCache = true
}
}
}

mavenResolvedDependencies {
Expand All @@ -125,6 +160,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.maven.MavenResolvedDependenciesPlugin'
tags.set(['nebula', 'publish', 'maven'])
compatibility {
features {
configurationCache = true
}
}
}

mavenVerifyUnspecifiedVersionDependencies {
Expand All @@ -133,6 +173,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.maven.MavenVerifyUnspecifiedVersionDependenciesPlugin'
tags.set(['nebula', 'publish', 'maven'])
compatibility {
features {
configurationCache = true
}
}
}

mavenRemoveInvalidDependencies {
Expand All @@ -141,6 +186,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.maven.MavenRemoveInvalidDependenciesPlugin'
tags.set(['nebula', 'publish', 'maven'])
compatibility {
features {
configurationCache = true
}
}
}

ivyRemoveInvalidDependencies {
Expand All @@ -149,6 +199,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.ivy.IvyRemoveInvalidDependenciesPlugin'
tags.set(['nebula', 'publish', 'ivy'])
compatibility {
features {
configurationCache = false
}
}
}


Expand All @@ -158,6 +213,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.maven.MavenScmPlugin'
tags.set(['nebula', 'publish', 'maven'])
compatibility {
features {
configurationCache = true
}
}
}

ivyBasePublish {
Expand All @@ -166,6 +226,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.ivy.IvyBasePublishPlugin'
tags.set(['nebula', 'publish', 'ivy'])
compatibility {
features {
configurationCache = false
}
}
}

ivyManifest {
Expand All @@ -174,6 +239,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.ivy.IvyManifestPlugin'
tags.set(['nebula', 'publish', 'ivy'])
compatibility {
features {
configurationCache = false
}
}
}

ivyNebulaPublish {
Expand All @@ -182,6 +252,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.ivy.IvyNebulaPublishPlugin'
tags.set(['nebula', 'publish', 'ivy'])
compatibility {
features {
configurationCache = false
}
}
}

ivyPublish {
Expand All @@ -190,6 +265,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.ivy.IvyPublishPlugin'
tags.set(['nebula', 'publish', 'ivy'])
compatibility {
features {
configurationCache = false
}
}
}

ivyShadowPublish {
Expand All @@ -198,6 +278,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.ivy.IvyShadowPublishPlugin'
tags.set(['nebula', 'publish', 'ivy', 'shadow'])
compatibility {
features {
configurationCache = false
}
}
}

ivyResolvedDependencies {
Expand All @@ -206,6 +291,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.ivy.IvyResolvedDependenciesPlugin'
tags.set(['nebula', 'publish', 'ivy'])
compatibility {
features {
configurationCache = false
}
}
}

ivyVerifyUnspecifiedVersionDependencies {
Expand All @@ -214,6 +304,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.ivy.IvyVerifyUnspecifiedVersionDependenciesPlugin'
tags.set(['nebula', 'publish', 'ivy'])
compatibility {
features {
configurationCache = false
}
}
}

ivyCompileOnly {
Expand All @@ -222,6 +317,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.ivy.IvyCompileOnlyPlugin'
tags.set(['nebula', 'publish', 'ivy'])
compatibility {
features {
configurationCache = false
}
}
}

publishVerification {
Expand All @@ -230,6 +330,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.verification.PublishVerificationPlugin'
tags.set(['nebula', 'publish'])
compatibility {
features {
configurationCache = true
}
}
}

javadocJar {
Expand All @@ -238,6 +343,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.publications.JavadocJarPlugin'
tags.set(['nebula', 'publish', 'javadoc'])
compatibility {
features {
configurationCache = true
}
}
}

sourceJar {
Expand All @@ -246,6 +356,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.publications.SourceJarPlugin'
tags.set(['nebula', 'publish', 'source'])
compatibility {
features {
configurationCache = true
}
}
}

testJar {
Expand All @@ -254,6 +369,11 @@ gradlePlugin {
description = 'Plugins to ease maven-publish and ivy-publish configuration'
implementationClass = 'nebula.plugin.publishing.publications.TestJarPlugin'
tags.set(['nebula', 'publish', 'test-jar'])
compatibility {
features {
configurationCache = false
}
}
}
}
}
Expand Down
Loading