File tree Expand file tree Collapse file tree
main/kotlin/com/innopolis/innoqueue/domain
test/kotlin/com/innopolis/innoqueue/testcontainer Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ val springBootVersion: String by project
22val javaVersion: String by project
33
44plugins {
5- id(" org.springframework.boot" ) version " 2.7.8 "
6- id(" io.spring.dependency-management" ) version " 1.1.0 "
7- kotlin(" jvm" ) version " 1.8 .10"
8- kotlin(" plugin.spring" ) version " 1.8 .10"
9- kotlin(" plugin.jpa" ) version " 1.8 .10"
10- id(" io.gitlab.arturbosch.detekt" ) version " 1.22.0 "
5+ id(" org.springframework.boot" ) version " 2.7.17 "
6+ id(" io.spring.dependency-management" ) version " 1.1.4 "
7+ kotlin(" jvm" ) version " 1.9 .10"
8+ kotlin(" plugin.spring" ) version " 1.9 .10"
9+ kotlin(" plugin.jpa" ) version " 1.9 .10"
10+ id(" io.gitlab.arturbosch.detekt" ) version " 1.23.3 "
1111 id(" jacoco" )
12- id(" org.jetbrains.dokka" ) version " 1.7.20 "
13- id(" info.solidsoft.pitest" ) version " 1.9 .0"
12+ id(" org.jetbrains.dokka" ) version " 1.9.10 "
13+ id(" info.solidsoft.pitest" ) version " 1.15 .0"
1414}
1515
1616group = " com.innopolis"
Original file line number Diff line number Diff line change 1- flywayVersion =9.14.1
2- firebaseVersion =9.1.1
31javaVersion =17
4- kotlinVersion =1.8.10
5- springBootVersion =2.7.8
6- jsonVersion =20220924
7- springdocVersion =1.6.14
8- junitVersion =5.9.2
9- mockkVersion =1.13.4
10- testcontainersVersion =1.17.6
11- postgresqlVersion =42.5.3
12- jacksonVersion =2.14.2
2+ kotlinVersion =1.9.10
3+ springBootVersion =2.7.17
4+ firebaseVersion =9.2.0
5+ springdocVersion =1.7.0
6+ flywayVersion =9.22.3
7+ postgresqlVersion =42.6.0
8+ testcontainersVersion =1.19.1
9+ junitVersion =5.10.1
10+ mockkVersion =1.13.8
11+ jsonVersion =20231013
12+ jacksonVersion =2.15.3
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-7.5 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.4 -bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ class FcmTokenId : Serializable {
1414 var fcmToken: String? = null
1515
1616 companion object {
17- const val serialVersionUID = 1L
17+ private const val serialVersionUID: Long = 1L
1818 }
1919}
Original file line number Diff line number Diff line change @@ -22,6 +22,6 @@ class UserQueueId : Serializable {
2222// var queue: Queue? = null
2323
2424 companion object {
25- const val serialVersionUID = 2L
25+ private const val serialVersionUID: Long = 2L
2626 }
2727}
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ abstract class PostgresTestContainer {
3131 }
3232
3333 companion object {
34- val postgreSQLContainer: PostgreSQLContainer <* > = PostgreSQLContainer (" postgres:15 " )
34+ val postgreSQLContainer: PostgreSQLContainer <* > = PostgreSQLContainer (" postgres:16 " )
3535 .withDatabaseName(" postgres" )
3636 .withUsername(" postgres" )
3737 .withPassword(" postgres" )
You can’t perform that action at this time.
0 commit comments