GoogleContainerTools / GoogleContainerTools/jib
Simplified Jib plugin extension configuration
- Dominant language
- Java
- Stars
- 14.5k
- Forks
- 1.5k
- PR merge metrics
- No merged PRs in 30d
Description
When using a single extension that doesn't define an extension-specific config, the user currently has to put quite some block into the build file.
- Maven
```xml
com.example.Foo
```
- Gradle
```gradle
pluginExtensions {
pluginExtension {
implementation = 'com.example.Foo'
}
}
```
It'd be nice if they could do
```xml
com.example.Foo
```
```gradle
pluginExtensions = 'com.example.Foo'
```
or the following if the above doesn't make sense:
```xml
com.example.Foo
com.example.Bar
```
```gradle
pluginExtensions = ['com.example.Foo']
```
Contributor guide
Assessment
This issue has not been assessed yet.