Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import groovy.lang.DelegatesTo;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.inject.Inject;
Expand Down Expand Up @@ -92,7 +91,7 @@ public BaseDistributionExtension(Project project) {
projectName = project.getName();
}

public final Provider<String> getDistributionServiceGroup() {
public final Property<String> getDistributionServiceGroup() {
return serviceGroup;
}

Expand All @@ -110,7 +109,7 @@ public final void setServiceGroup(String serviceGroup) {
this.serviceGroup.set(serviceGroup);
}

public final Provider<String> getDistributionServiceName() {
public final Property<String> getDistributionServiceName() {
return serviceName;
}

Expand All @@ -128,7 +127,7 @@ public final void setServiceName(String serviceName) {
this.serviceName.set(serviceName);
}

public final Provider<ProductType> getProductType() {
public final Property<ProductType> getProductType() {
return productType;
}

Expand Down Expand Up @@ -230,7 +229,7 @@ public final void productDependency(@DelegatesTo(ProductDependency.class) Closur
}));
}

public final Provider<Set<ProductId>> getOptionalProductDependencies() {
public final SetProperty<ProductId> getOptionalProductDependencies() {
return optionalProductDependencies;
}

Expand All @@ -242,7 +241,7 @@ public final void optionalProductDependency(String optionalProductId) {
this.optionalProductDependencies.add(new ProductId(optionalProductId));
}

public final Provider<Set<ProductId>> getIgnoredProductDependencies() {
public final SetProperty<ProductId> getIgnoredProductDependencies() {
return ignoredProductDependencies;
}

Expand Down