Skip to content

Commit 348870a

Browse files
committed
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
1 parent 29fe8c9 commit 348870a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.mvn/wrapper/maven-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
18-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1313

14-
<develocity-maven-extension.version>1.21.6</develocity-maven-extension.version>
15-
<maven-core.version>3.9.8</maven-core.version>
14+
<develocity-maven-extension.version>1.22.2</develocity-maven-extension.version>
15+
<maven-core.version>3.9.9</maven-core.version>
1616
<plexus-component.version>2.2.0</plexus-component.version>
1717
<sisu-inject.version>0.3.5</sisu-inject.version>
1818

0 commit comments

Comments
 (0)