GoogleContainerTools / GoogleContainerTools/jib

Simplified Jib plugin extension configuration

Open
#2,521 2 comments 0 reactions 0 assignees View on GitHub
area/jib-gradle-plugin area/jib-maven-plugin enhancement priority:p3 team starter bug
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.