Skip to content

Commit 7609fbe

Browse files
author
Roman Pierson
committed
Lates libs for 5x
1 parent 7cc1aee commit 7609fbe

File tree

7 files changed

+25
-42
lines changed

7 files changed

+25
-42
lines changed

.github/workflows/sonar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ jobs:
1919
java-version: 17
2020
distribution: temurin
2121
- name: Build project
22-
run: ./gradlew clean build sonarqube -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=romanpierson -Dsonar.projectKey=romanpierson_vertx-web-accesslog
22+
run: ./gradlew clean build sonar -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=romanpierson -Dsonar.projectKey=romanpierson_vertx-web-accesslog
2323

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies {
4040

4141
Accesslog version | Vertx version
4242
----|------
43-
5.0.0-SNAPSHOT | 5.0.0-SNAPSHOT >
43+
5.0.0-SNAPSHOT | 5.0.0.CR3 >
4444
1.7.0 | 4.5.1 >
4545
1.6.0 | 4.3.0 >
4646
1.5.0 | 4.2.0 >

build.gradle

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,19 @@ plugins {
22
id 'java'
33
id 'maven-publish'
44
id 'jacoco'
5-
id "org.sonarqube" version "5.1.0.4882"
5+
id "org.sonarqube" version "6.0.1.5171"
66
}
77

88
repositories {
99
mavenCentral()
10-
maven {
11-
url "https://s01.oss.sonatype.org/content/repositories/snapshots"
12-
}
1310
}
1411

1512
ext{
16-
vertxVersion = '5.0.0-SNAPSHOT'
17-
jupiterVersion = '5.11.0'
18-
jupiterLauncherVersion = '1.11.0'
13+
vertxVersion = '5.0.0.CR3'
14+
jupiterVersion = '5.11.4'
15+
jupiterLauncherVersion = '1.11.4'
1916
slfApiVersion = '2.0.16'
20-
logbackVersion = '1.5.8'
17+
logbackVersion = '1.5.15'
2118
}
2219

2320
dependencies {
@@ -48,25 +45,25 @@ jar.archiveFileName = "vertx-web-accesslog-5.0.0-SNAPSHOT.jar"
4845

4946
java {
5047
withSourcesJar()
51-
sourceCompatibility='8'
52-
targetCompatibility='8'
48+
sourceCompatibility='11'
49+
targetCompatibility='11'
5350
}
5451

5552
publishing {
5653
publications {
5754
mavenJava(MavenPublication) {
5855

59-
groupId 'com.romanpierson'
60-
artifactId 'vertx-web-accesslog'
61-
version '5.0.0-SNAPSHOT'
56+
groupId = 'com.romanpierson'
57+
artifactId = 'vertx-web-accesslog'
58+
version = '5.0.0-SNAPSHOT'
6259

6360
from components.java
6461

6562
}
6663
}
6764
}
6865

69-
sonarqube {
66+
sonar {
7067
properties {
7168
property "sonar.sources", "src/main"
7269
property "sonar.tests", "src/test"
@@ -83,6 +80,6 @@ jacocoTestReport {
8380
}
8481

8582
wrapper() {
86-
gradleVersion = '8.10.1'
83+
gradleVersion = '8.12'
8784
}
8885

gradle/wrapper/gradle-wrapper.jar

-2.36 KB
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
4-
networkTimeout=10000
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
54
zipStoreBase=GRADLE_USER_HOME
65
zipStorePath=wrapper/dists

gradlew

Lines changed: 4 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 6 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)