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

Commit f841caf

Browse files
committed
Move to com.netflix namespace for plugin id
1 parent b6bee2b commit f841caf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
gradle-override-plugin
22
==============
33
![Support Status](https://img.shields.io/badge/nebula-inactive-red.svg)
4-
[![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)
4+
[![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)
55
[![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)
66
![Build](https://github.com/nebula-plugins/gradle-override-plugin/actions/workflows/nebula.yml/badge.svg)
77
[![Apache 2.0](https://img.shields.io/github/license/nebula-plugins/gradle-override-plugin.svg)](http://www.apache.org/licenses/LICENSE-2.0)
@@ -41,7 +41,7 @@ code this becomes very tedious. Furthermore, the build script user has to know t
4141
To apply this plugin if using Gradle 2.1 or newer
4242

4343
plugins {
44-
id 'nebula.override' version '3.0.2'
44+
id 'com.netflix.nebula.override' version '4.0.0'
4545
}
4646

4747
If using an older version of Gradle
@@ -50,11 +50,11 @@ If using an older version of Gradle
5050
repositories { mavenCentral() }
5151

5252
dependencies {
53-
classpath 'com.netflix.nebula:gradle-override-plugin:3.0.2'
53+
classpath 'com.netflix.nebula:gradle-override-plugin:4.0.0'
5454
}
5555
}
5656

57-
apply plugin: 'nebula.override'
57+
apply plugin: 'com.netflix.nebula.override'
5858

5959
### Overriding properties with the plugin
6060

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pluginBundle {
4040
gradlePlugin {
4141
plugins {
4242
override {
43-
id = 'nebula.override'
43+
id = 'com.netflix.nebula.override'
4444
displayName = 'Gradle Override plugin'
4545
description = project.description
4646
implementationClass = 'nebula.plugin.override.NebulaOverridePlugin'

0 commit comments

Comments
 (0)