Skip to content

Commit

Permalink
fix: release process of bootstrapper (#2678)
Browse files Browse the repository at this point in the history
* fix: release process of bootstrapper

Signed-off-by: Attila Mészáros <a_meszaros@apple.com>

* format

Signed-off-by: Attila Mészáros <a_meszaros@apple.com>

---------

Signed-off-by: Attila Mészáros <a_meszaros@apple.com>
  • Loading branch information
csviri authored Jan 31, 2025
1 parent 888fac5 commit d045a04
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ void copiesFilesToTarget() {
private void assertProjectCompiles() {
try {
var process = Runtime.getRuntime()
.exec("mvn clean install -f target/test-project/pom.xml -DskipTests");
.exec(
"mvn clean install -f target/test-project/pom.xml -DskipTests -Dspotless.apply.skip");

BufferedReader stdOut = new BufferedReader(new InputStreamReader(process.getInputStream()));

Expand Down

0 comments on commit d045a04

Please sign in to comment.