Skip to content

Commit

Permalink
Oppgraderer pakker og plugins. (#132)
Browse files Browse the repository at this point in the history
* Bump the gradle group across 1 directory with 4 updates

Bumps the gradle group with 4 updates in the / directory: [jvm](https://github.com/JetBrains/kotlin), [plugin.spring](https://github.com/JetBrains/kotlin), [plugin.jpa](https://github.com/JetBrains/kotlin) and [org.springframework.boot](https://github.com/spring-projects/spring-boot).


Updates `jvm` from 1.9.24 to 2.0.0
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v1.9.24...v2.0.0)

Updates `plugin.spring` from 1.9.24 to 2.0.0
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v1.9.24...v2.0.0)

Updates `plugin.jpa` from 1.9.24 to 2.0.0
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v1.9.24...v2.0.0)

Updates `org.springframework.boot` from 3.2.5 to 3.3.1
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.2.5...v3.3.1)

---
updated-dependencies:
- dependency-name: jvm
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle
- dependency-name: plugin.spring
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle
- dependency-name: plugin.jpa
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle
- dependency-name: org.springframework.boot
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
...

Signed-off-by: dependabot[bot] <[email protected]>

* Oppgraderer pakker og plugins.

Legger til manglende postgresql modul for flyway 10.
Lukker #131.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
ramrock93 and dependabot[bot] authored Jun 26, 2024
1 parent 113a682 commit 19b8eef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
14 changes: 6 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.9.24"
kotlin("plugin.spring") version "1.9.24"
kotlin("plugin.jpa") version "1.9.24"
id("org.springframework.boot") version "3.2.5"
kotlin("jvm") version "2.0.0"
kotlin("plugin.spring") version "2.0.0"
kotlin("plugin.jpa") version "2.0.0"
id("org.springframework.boot") version "3.3.1"
id("io.spring.dependency-management") version "1.1.5"
id("org.sonarqube") version "5.0.0.4638"
jacoco
Expand Down Expand Up @@ -59,10 +59,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-web") {
//exclude(group = "org.springframework.boot", module = "spring-boot-starter-tomcat")
}
//implementation("org.springframework.boot:spring-boot-starter-jetty")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework:spring-aspects")
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
testImplementation("org.springframework.boot:spring-boot-starter-test") {
Expand All @@ -81,6 +78,7 @@ dependencies {
// Database
runtimeOnly("org.postgresql:postgresql:$postgresqlVersion")
implementation("org.flywaydb:flyway-core")
implementation("org.flywaydb:flyway-database-postgresql")
testImplementation("org.testcontainers:junit-jupiter:$testcontainersVersion")
testImplementation("org.testcontainers:postgresql:$testcontainersVersion")

Expand Down
4 changes: 2 additions & 2 deletions src/test/resources/application-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ spring:
mvc:
log-request-details: true
datasource:
url: jdbc:tc:postgresql:12:///
url: jdbc:tc:postgresql:15:///
driver-class-name: org.testcontainers.jdbc.ContainerDatabaseDriver
jpa:
show-sql: true
database-platform: org.hibernate.dialect.PostgreSQL12Dialect
database-platform: org.hibernate.dialect.PostgreSQL15Dialect

kafka:
bootstrap-servers: ${kafka-servers}
Expand Down

0 comments on commit 19b8eef

Please sign in to comment.