Skip to content

Commit

Permalink
Merge pull request #29758 from gastaldi/build_quarkiverse
Browse files Browse the repository at this point in the history
CI should use -Dno-format to execute other plugins too
  • Loading branch information
gastaldi authored Dec 9, 2022
2 parents 10fa7eb + a74d91a commit f3779d7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,7 @@ jobs:
cache: 'maven'

- name: Build with Maven
run: mvn -B formatter:validate clean install --file pom.xml
run: mvn -B clean verify -Dno-format

- name: Build with Maven (Native)
run: mvn -B verify -Dnative -Dquarkus.native.container-build -Dnative.surefire.skip
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public enum LayoutType {

public static final String DEFAULT_QUARKIVERSE_PARENT_GROUP_ID = "io.quarkiverse";
public static final String DEFAULT_QUARKIVERSE_PARENT_ARTIFACT_ID = "quarkiverse-parent";
public static final String DEFAULT_QUARKIVERSE_PARENT_VERSION = "10";
public static final String DEFAULT_QUARKIVERSE_PARENT_VERSION = "12";
public static final String DEFAULT_QUARKIVERSE_NAMESPACE_ID = "quarkus-";
public static final String DEFAULT_QUARKIVERSE_GUIDE_URL = "https://quarkiverse.github.io/quarkiverse-docs/%s/dev/";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public static AbstractPathAssert<?> assertThatMatchSnapshot(Path fileToCheck, St

final String snapshotNotFoundDescription = "corresponding snapshot file not found for " + snapshotIdentifier
+ " (Use -Dsnap to create it automatically)";
final String description = "Snapshot is not matching (use -Dsnap to udpate it automatically): "
final String description = "Snapshot is not matching (use -Dsnap to update it automatically): "
+ snapshotIdentifier;
if (isUTF8File(fileToCheck)) {
assertThat(snapshotFile).as(snapshotNotFoundDescription).isRegularFile();
Expand Down Expand Up @@ -264,7 +264,7 @@ public static ListAssert<String> assertThatDirectoryTreeMatchSnapshots(String sn
.collect(toList());

return assertThat(tree)
.as("Snapshot is not matching (use -Dsnap to udpate it automatically):" + snapshotName)
.as("Snapshot is not matching (use -Dsnap to update it automatically):" + snapshotName)
.containsExactlyInAnyOrderElementsOf(content);
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.quarkiverse</groupId>
<artifactId>quarkiverse-parent</artifactId>
<version>10</version>
<version>12</version>
</parent>
<groupId>io.quarkiverse.my-quarkiverse-ext</groupId>
<artifactId>quarkus-my-quarkiverse-ext-parent</artifactId>
Expand Down

0 comments on commit f3779d7

Please sign in to comment.