Skip to content

Commit

Permalink
Issue warning for empty feature and remove from collection (#831)
Browse files Browse the repository at this point in the history
* Issue warning for empty feature and remove from collection

* Remove yaml change for common branch
  • Loading branch information
cherylking committed Jun 5, 2023
1 parent 540ba55 commit 9848d25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ compileTestGroovy {
}

def libertyAntVersion = "1.9.12"
def libertyCommonVersion = "1.8.24"
def libertyCommonVersion = "1.8.25-SNAPSHOT"

dependencies {
implementation gradleApi()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public class AbstractFeatureTask extends AbstractServerTask {
serverFeatures = util.getServerFeatures(getServerDir(project), getLibertyDirectoryPropertyFiles(null))
}

Set<String> featuresToInstall = InstallFeatureUtil.combineToSet(pluginListedFeatures, dependencyFeatures, serverFeatures)
Set<String> featuresToInstall = util.combineToSet(pluginListedFeatures, dependencyFeatures, serverFeatures)
return featuresToInstall
}

Expand Down

0 comments on commit 9848d25

Please sign in to comment.