Skip to content

Commit

Permalink
Prefer assemble to build
Browse files Browse the repository at this point in the history
  • Loading branch information
rnc authored and stuartwdouglas committed Mar 14, 2024
1 parent 1e6c2ce commit 4a8a053
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ public final class GradleUtils {
/**
* Default Gradle arguments.
*/
public static final List<String> DEFAULT_GRADLE_ARGS = List.of("build", "publishToMavenLocal");
public static final List<String> DEFAULT_GRADLE_ARGS = List.of("assemble", "publishToMavenLocal");

/**
* Gradle arguments if 'maven' plugin is detected.
*/
public static final List<String> MAVEN_PLUGIN_GRADLE_ARGS = List.of("build", "uploadArchives");
public static final List<String> MAVEN_PLUGIN_GRADLE_ARGS = List.of("assemble", "uploadArchives");

private GradleUtils() {

Expand Down

0 comments on commit 4a8a053

Please sign in to comment.