Skip to content

Commit

Permalink
chore: ComposeExtension and ComposeSettings made abstract to support …
Browse files Browse the repository at this point in the history
…injected properties
  • Loading branch information
augi committed Jul 28, 2021
1 parent 9e3c680 commit 056ee5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.gradle.util.ConfigureUtil

import javax.inject.Inject

class ComposeExtension extends ComposeSettings {
abstract class ComposeExtension extends ComposeSettings {
@Inject
ComposeExtension(Project project) {
super(project, '', '')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import java.security.MessageDigest
import java.time.Duration

@CompileStatic
class ComposeSettings {
abstract class ComposeSettings {
final TaskProvider<ComposeUp> upTask
final TaskProvider<ComposeDown> downTask
final TaskProvider<ComposeDownForced> downForcedTask
Expand Down

0 comments on commit 056ee5d

Please sign in to comment.