Skip to content
Merged
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

### Plugin
[![Gradle Plugin Portal](https://img.shields.io/maven-metadata/v/https/plugins.gradle.org/m2/com.netflix.nebula/gradle-nothing-plugin/maven-metadata.xml.svg?label=gradlePluginPortal)](https://plugins.gradle.org/plugin/nebula.nothing-plugin)
[![Maven Central](https://img.shields.io/maven-central/v/com.netflix.nebula/nebula-hollow-plugin)](https://maven-badges.herokuapp.com/maven-central/com.netflix.nebula/gradle-nothing-plugin)
[![Maven Central](https://img.shields.io/maven-central/v/com.netflix.nebula/gradle-nothing-plugin)](https://maven-badges.herokuapp.com/maven-central/com.netflix.nebula/gradle-nothing-plugin)

### Library
[![Maven Central](https://img.shields.io/maven-central/v/com.netflix.nebula/nebula-hollow-plugin)](https://maven-badges.herokuapp.com/maven-central/com.netflix.nebula/nebula-nothing-library)
[![Maven Central](https://img.shields.io/maven-central/v/com.netflix.nebula/nebula-nothing-library)](https://maven-badges.herokuapp.com/maven-central/com.netflix.nebula/nebula-nothing-library)


=====================
Expand Down
2 changes: 1 addition & 1 deletion nebula-nothing-library/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
java
id("com.netflix.nebula.plugin-plugin")
}

dependencyLocking {
Expand Down
13 changes: 12 additions & 1 deletion nebula-nothing-library/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
empty=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
cglib:cglib-nodep:3.2.2=integTestRuntimeClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-test:11.6.3=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
net.bytebuddy:byte-buddy:1.15.11=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.apiguardian:apiguardian-api:1.1.2=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.assertj:assertj-core:3.27.3=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.jspecify:jspecify:1.0.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.junit.platform:junit-platform-commons:1.14.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.junit.platform:junit-platform-engine:1.14.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.junit.platform:junit-platform-launcher:1.14.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.objenesis:objenesis:2.4=integTestRuntimeClasspath,testRuntimeClasspath
org.opentest4j:opentest4j:1.3.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
empty=annotationProcessor,compileClasspath,integTestAnnotationProcessor,runtimeClasspath,testAnnotationProcessor
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
package com.netflix.nebula.nothing;

/**
* Does nothing
*/
public class NothingClass {
}
6 changes: 3 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ pluginManagement {
gradlePluginPortal()
}
plugins {
id("com.netflix.nebula.root") version("24.0.0")
id("com.netflix.nebula.plugin-plugin") version("24.0.0")
id("com.netflix.nebula.library") version("24.0.0")
id("com.netflix.nebula.root") version("24.0.1")
id("com.netflix.nebula.plugin-plugin") version("24.0.1")
id("com.netflix.nebula.library") version("24.0.1")
}
}

Expand Down