Skip to content

Commit

Permalink
Upgrade to nebula plugin-plugin 17.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Jul 30, 2022
1 parent 4cb1077 commit f616b8f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
26 changes: 18 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


plugins {
id 'nebula.plugin-plugin' version '16.3.0'
id 'nebula.plugin-plugin' version '17.0.0'
id 'java-library'
}

Expand All @@ -41,24 +41,34 @@ dependencies {
ext.set("dependencyLock.ignore", "true")

pluginBundle {
tags = ['nebula', 'project']
}

gradlePlugin {
plugins {
nebulaProject {
id = 'nebula.project'
displayName = 'Nebula Project'
description = project.description
tags = ['nebula', 'project']
implementationClass = 'nebula.plugin.responsible.NebulaResponsiblePlugin'
}
nebulaIntegTest {
id = 'nebula.integtest'
displayName = 'Nebula Integration Test'
description = 'Adds source set and task for running integration tests separately from unit tests'
implementationClass = 'nebula.plugin.responsible.NebulaIntegTestPlugin'
}
nebulaFacet {
id = 'nebula.facet'
displayName = 'Nebula Facet'
description = 'Reduce boilerplate for adding additional source sets'
tags = ['nebula', 'project']
implementationClass = 'nebula.plugin.responsible.NebulaFacetPlugin'
}
nebulaIntegTest {
id = 'nebula.integtest'
displayName = 'Nebula Integration Test'
description = 'Adds source set and task for running integration tests separately from unit tests'
tags = ['nebula', 'project']
nebulaIntegTestStandalone {
id = 'nebula.integtest-standalone'
displayName = 'Nebula Integration Test Standalone'
description = 'Adds source set and task for running integration tests separately from unit tests (standalone)'
implementationClass = 'nebula.plugin.responsible.NebulaIntegTestStandalonePlugin'
}
}
}
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit f616b8f

Please sign in to comment.