├── .github ├── dependabot.yml └── workflows │ └── gradle.yaml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src ├── integrationTest └── kotlin │ └── net │ └── ltgt │ └── gradle │ └── nullaway │ ├── Fixtures.kt │ ├── GroovyDslIntegrationTest.kt │ └── NullAwayPluginIntegrationTest.kt ├── main └── kotlin │ └── net │ └── ltgt │ └── gradle │ └── nullaway │ ├── NullAwayExtension.kt │ ├── NullAwayOptions.kt │ └── NullAwayPlugin.kt └── test └── kotlin └── net └── ltgt └── gradle └── nullaway └── NullAwayOptionsTest.kt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/gradle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/.github/workflows/gradle.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | /.gradle/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/integrationTest/kotlin/net/ltgt/gradle/nullaway/Fixtures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/src/integrationTest/kotlin/net/ltgt/gradle/nullaway/Fixtures.kt -------------------------------------------------------------------------------- /src/integrationTest/kotlin/net/ltgt/gradle/nullaway/GroovyDslIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/src/integrationTest/kotlin/net/ltgt/gradle/nullaway/GroovyDslIntegrationTest.kt -------------------------------------------------------------------------------- /src/integrationTest/kotlin/net/ltgt/gradle/nullaway/NullAwayPluginIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/src/integrationTest/kotlin/net/ltgt/gradle/nullaway/NullAwayPluginIntegrationTest.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/ltgt/gradle/nullaway/NullAwayExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/src/main/kotlin/net/ltgt/gradle/nullaway/NullAwayExtension.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/ltgt/gradle/nullaway/NullAwayOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/src/main/kotlin/net/ltgt/gradle/nullaway/NullAwayOptions.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/ltgt/gradle/nullaway/NullAwayPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/src/main/kotlin/net/ltgt/gradle/nullaway/NullAwayPlugin.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/ltgt/gradle/nullaway/NullAwayOptionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbroyer/gradle-nullaway-plugin/HEAD/src/test/kotlin/net/ltgt/gradle/nullaway/NullAwayOptionsTest.kt --------------------------------------------------------------------------------