Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Maven/Wrapper/Develocity Versions for better Compatibility
These changes solves quarkusio/quarkus#42756. What i have done to check ? 1) Made commit changes. 2) ./mvnw clean install (quarkus-project-develocity-extension, 1.1.6-SNAPSHOT to make it visible via local m2) 3) Made some changes to https://github.com/quarkusio/quarkus/blob/main/.mvn/extensions.xml, which is now looking as below: ``` <extensions> <extension> <groupId>com.gradle</groupId> <artifactId>develocity-maven-extension</artifactId> <version>1.22.2</version> </extension> <extension> <groupId>com.gradle</groupId> <artifactId>common-custom-user-data-maven-extension</artifactId> <version>2.0.1</version> </extension> <extension> <groupId>com.gradle</groupId> <artifactId>quarkus-build-caching-extension</artifactId> <version>1.8</version> </extension> <extension> <groupId>io.quarkus.develocity</groupId> <artifactId>quarkus-project-develocity-extension</artifactId> <version>1.1.6-SNAPSHOT</version> </extension> </extensions> ``` 4) cd into quarkus project git repository root directory on my disk drive 5) ./mvnw -Dquickly Result looks like that: ``` ... [INFO] Quarkus - Documentation ............................ SUCCESS [ 10.929 s] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 35:00 min [INFO] Finished at: 2024-10-09T17:33:10+03:00 [INFO] ------------------------------------------------------------------------ [INFO] 14725 goals, 14709 executed, 16 from cache ``` This is only way how i finally successfully built Quarkus on my Windows machine via Maven Wrapper or even locally installed Maven of version 3.9.9
- Loading branch information