Skip to content

Commit

Permalink
Merge pull request #1683 from cherylking/warnEmptyFeature
Browse files Browse the repository at this point in the history
Warn empty feature
  • Loading branch information
cherylking authored Jun 5, 2023
2 parents 335f4de + 62d23e5 commit 9309040
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion liberty-maven-app-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven</artifactId>
<version>3.9-SNAPSHOT</version>
<version>3.8.1-SNAPSHOT</version>
</parent>

<artifactId>liberty-maven-app-parent</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions liberty-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven</artifactId>
<version>3.9-SNAPSHOT</version>
<version>3.8.1-SNAPSHOT</version>
</parent>

<artifactId>liberty-maven-plugin</artifactId>
Expand Down Expand Up @@ -66,7 +66,7 @@
<dependency>
<groupId>io.openliberty.tools</groupId>
<artifactId>ci.common</artifactId>
<version>1.8.24</version>
<version>1.8.25-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.twdata.maven</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ else if (util == null && !noFeaturesSection) {
else {
Set<String> dependencyFeatures = getDependencyFeatures();
Set<String> serverFeatures = serverDirectory.exists() ? util.getServerFeatures(serverDirectory, getLibertyDirectoryPropertyFiles()) : null;
return InstallFeatureUtil.combineToSet(pluginListedFeatures, dependencyFeatures, serverFeatures);
return util.combineToSet(pluginListedFeatures, dependencyFeatures, serverFeatures);

}
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven</artifactId>
<version>3.9-SNAPSHOT</version>
<version>3.8.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Liberty Tools for Maven</name>
<description>
Expand Down

0 comments on commit 9309040

Please sign in to comment.