Skip to content

Commit 575439e

Browse files
committed
chore: bumped gradle wrapper and remomved io.netty:netty-codec-http
1 parent 29a2eb1 commit 575439e

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

Diff for: build.gradle.kts

+2-8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
33
group = "no.nav.syfo"
44
version = "1.0.0"
55

6+
val javaVersion = JvmTarget.JVM_21
7+
68
val ktorVersion = "3.1.0"
79
val logbackVersion = "1.5.16"
810
val logstashencoderVersion = "8.0"
@@ -17,14 +19,11 @@ val mockkVersion = "1.13.16"
1719
val kotlinVersion = "2.1.10"
1820
val googlecloudstorageVersion = "2.48.2"
1921
val ktfmtVersion = "0.44"
20-
val nettyCodecHttp = "4.1.118.Final"
2122
val kafkaVersion = "3.9.0"
2223

2324
///Due to vulnerabilities
2425
val commonsCompressVersion = "1.27.1"
2526

26-
val javaVersion = JvmTarget.JVM_21
27-
2827
plugins {
2928
id("application")
3029
kotlin("jvm") version "2.1.10"
@@ -50,11 +49,6 @@ dependencies {
5049

5150
implementation("io.ktor:ktor-server-core:$ktorVersion")
5251
implementation("io.ktor:ktor-server-netty:$ktorVersion")
53-
constraints {
54-
implementation("io.netty:netty-codec-http:$nettyCodecHttp") {
55-
because("override transient from io.ktor:ktor-server-netty")
56-
}
57-
}
5852

5953
implementation("org.postgresql:postgresql:$postgresVersion")
6054
implementation("com.zaxxer:HikariCP:$hikariVersion")

Diff for: gradle/wrapper/gradle-wrapper.jar

130 Bytes
Binary file not shown.

Diff for: gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

Diff for: gradlew

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -84,7 +86,8 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90+
' "$PWD" ) || exit
8891

8992
# Use the maximum available, or set MAX_FD != -1 to use that value.
9093
MAX_FD=maximum

Diff for: gradlew.bat

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

0 commit comments

Comments
 (0)