Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
Move to com.netflix namespace for plugin id
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Oct 10, 2022
1 parent b6bee2b commit f841caf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
gradle-override-plugin
==============
![Support Status](https://img.shields.io/badge/nebula-inactive-red.svg)
[![Gradle Plugin Portal](https://img.shields.io/maven-metadata/v/https/plugins.gradle.org/m2/com.netflix.nebula/gradle-override-plugin/maven-metadata.xml.svg?label=gradlePluginPortal)](https://plugins.gradle.org/plugin/nebula.override)
[![Gradle Plugin Portal](https://img.shields.io/maven-metadata/v/https/plugins.gradle.org/m2/com.netflix.nebula/gradle-override-plugin/maven-metadata.xml.svg?label=gradlePluginPortal)](https://plugins.gradle.org/plugin/com.netflix.nebula.override)
[![Maven Central](https://img.shields.io/maven-central/v/com.netflix.nebula/gradle-override-plugin)](https://maven-badges.herokuapp.com/maven-central/com.netflix.nebula/gradle-override-plugin)
![Build](https://github.com/nebula-plugins/gradle-override-plugin/actions/workflows/nebula.yml/badge.svg)
[![Apache 2.0](https://img.shields.io/github/license/nebula-plugins/gradle-override-plugin.svg)](http://www.apache.org/licenses/LICENSE-2.0)
Expand Down Expand Up @@ -41,7 +41,7 @@ code this becomes very tedious. Furthermore, the build script user has to know t
To apply this plugin if using Gradle 2.1 or newer

plugins {
id 'nebula.override' version '3.0.2'
id 'com.netflix.nebula.override' version '4.0.0'
}

If using an older version of Gradle
Expand All @@ -50,11 +50,11 @@ If using an older version of Gradle
repositories { mavenCentral() }

dependencies {
classpath 'com.netflix.nebula:gradle-override-plugin:3.0.2'
classpath 'com.netflix.nebula:gradle-override-plugin:4.0.0'
}
}

apply plugin: 'nebula.override'
apply plugin: 'com.netflix.nebula.override'

### Overriding properties with the plugin

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pluginBundle {
gradlePlugin {
plugins {
override {
id = 'nebula.override'
id = 'com.netflix.nebula.override'
displayName = 'Gradle Override plugin'
description = project.description
implementationClass = 'nebula.plugin.override.NebulaOverridePlugin'
Expand Down

0 comments on commit f841caf

Please sign in to comment.