Skip to content

Commit

Permalink
Fix installer profile being wrongly cached (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
Matyrobbrt committed May 2, 2024
1 parent fb4be7a commit 2d1add3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import org.gradle.api.provider.Property
import org.gradle.api.provider.Provider
import org.gradle.api.provider.SetProperty
import org.gradle.api.tasks.Input
import org.gradle.api.tasks.Nested
import org.gradle.api.tasks.Optional
import org.jetbrains.annotations.Nullable

Expand Down Expand Up @@ -155,7 +156,7 @@ abstract class InstallerProfile implements ConfigurableDSLElement<InstallerProfi
})
}

@Input
@Nested
@DSLProperty
@Optional
abstract ListProperty<Processor> getProcessors();
Expand Down Expand Up @@ -200,7 +201,7 @@ abstract class InstallerProfile implements ConfigurableDSLElement<InstallerProfi
})
}

@Input
@Nested
@DSLProperty
@Optional
abstract SetProperty<Library> getLibraries();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void run() {
}
}

@Internal
@Nested
public abstract Property<InstallerProfile> getProfile();

@InputFiles
Expand Down

0 comments on commit 2d1add3

Please sign in to comment.