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
2 changes: 1 addition & 1 deletion .github/workflows/archrules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
build-scan-terms-of-use-url: 'https://gradle.com/terms-of-service'
build-scan-terms-of-use-agree: 'yes'
- name: Gradle run archrules
run: ./gradlew --stacktrace archRulesConsoleReport archRulesMarkdownReport
run: ./gradlew --stacktrace archRulesConsoleReport archRulesMarkdownReport archRulesGithubReport
- name: Arch Rule Reports step summary
run: cat build/reports/archrules/report.md > $GITHUB_STEP_SUMMARY
- name: PR Comment
Expand Down
6 changes: 3 additions & 3 deletions gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ com.netflix.nebula:gradle-contacts-plugin:8.1.0=compileClasspath,runtimeClasspat
com.netflix.nebula:gradle-dependency-lock-plugin:17.2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:gradle-info-plugin:16.3.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:gradle-java-cross-compile-plugin:8.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-archrules-core:1.3.0=runtimeClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-archrules-gradle-plugin:1.3.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-archrules-core:1.3.1=runtimeClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-archrules-gradle-plugin:1.3.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-dependencies-comparison:0.4.2=runtimeClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-gradle-interop:3.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-oss-publishing-plugin:4.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-project-plugin:13.1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-publishing-plugin:23.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-release-plugin:21.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-test:12.6.0=testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-test:12.7.0=testCompileClasspath,testRuntimeClasspath
com.networknt:json-schema-validator:1.0.76=testCompileClasspath,testRuntimeClasspath
com.nimbusds:nimbus-jose-jwt:9.28=testCompileClasspath,testRuntimeClasspath
com.perforce:p4java:2015.2.1365273=runtimeClasspath,testRuntimeClasspath
Expand Down
1 change: 1 addition & 0 deletions src/main/java/nebula/plugin/plugin/NebulaProblems.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nebula.plugin.plugin;

Check warning on line 1 in src/main/java/nebula/plugin/plugin/NebulaProblems.java

View workflow job for this annotation

GitHub Actions / ArchRules

classes that are top level classes and are public and contain any members that modifier PUBLIC and have no tests should be null safe (JSpecify or Kotlin)

Class <nebula.plugin.plugin.NebulaProblems> is not null safe (JSpecify or Kotlin)

import org.gradle.api.problems.ProblemGroup;
import org.gradle.api.problems.ProblemId;
Expand All @@ -7,10 +7,11 @@
* Constants for Problem reporting
*/
public class NebulaProblems {

public static final ProblemGroup NEBULA_GROUP =

Check warning on line 11 in src/main/java/nebula/plugin/plugin/NebulaProblems.java

View workflow job for this annotation

GitHub Actions / Gradle Build without Publish (17)

no comment

Check warning on line 11 in src/main/java/nebula/plugin/plugin/NebulaProblems.java

View workflow job for this annotation

GitHub Actions / Gradle Build without Publish (25)

no comment

Check warning on line 11 in src/main/java/nebula/plugin/plugin/NebulaProblems.java

View workflow job for this annotation

GitHub Actions / Gradle Build without Publish (21)

no comment
ProblemGroup.create("com.netflix.nebula", "Nebula Plugins");

public static final ProblemId OSS_SETTINGS = ProblemId.create(

Check warning on line 14 in src/main/java/nebula/plugin/plugin/NebulaProblems.java

View workflow job for this annotation

GitHub Actions / Gradle Build without Publish (17)

no comment

Check warning on line 14 in src/main/java/nebula/plugin/plugin/NebulaProblems.java

View workflow job for this annotation

GitHub Actions / Gradle Build without Publish (25)

no comment

Check warning on line 14 in src/main/java/nebula/plugin/plugin/NebulaProblems.java

View workflow job for this annotation

GitHub Actions / Gradle Build without Publish (21)

no comment
"com.netflix.nebula.oss.settings not found",
"using a nebula convention plugin without com.netflix.nebula.oss.settings is deprecated",
NEBULA_GROUP);
Expand Down