Skip to content

Commit 41ade89

Browse files
committed
Dependency Updates
1 parent e056add commit 41ade89

6 files changed

Lines changed: 23 additions & 23 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ And the following to your `gradle/libs.versions.toml`:
3434
```toml
3535
[versions]
3636
# Check this on https://central.sonatype.com/artifact/com.smushytaco/embedded-postgres/
37-
embeddedPostgres = "3.0.2"
37+
embeddedPostgres = "3.0.3"
3838

3939
[libraries]
4040
embeddedPostgres = { group = "com.smushytaco", name = "embedded-postgres", version.ref = "embeddedPostgres" }

build.gradle.kts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,24 @@ plugins {
88
alias(libs.plugins.nmcp)
99
}
1010

11-
val projectName = providers.gradleProperty("name")
12-
val projectGroup = providers.gradleProperty("group")
13-
val projectVersion = providers.gradleProperty("version")
14-
val projectDescription = providers.gradleProperty("description")
11+
val projectName: Provider<String> = providers.gradleProperty("name")
12+
val projectGroup: Provider<String> = providers.gradleProperty("group")
13+
val projectVersion: Provider<String> = providers.gradleProperty("version")
14+
val projectDescription: Provider<String> = providers.gradleProperty("description")
1515

16-
val publishingUrl = providers.gradleProperty("url")
16+
val publishingUrl: Provider<String> = providers.gradleProperty("url")
1717

18-
val licenseName = providers.gradleProperty("license_name")
19-
val licenseUrl = providers.gradleProperty("license_url")
20-
val licenseDistribution = providers.gradleProperty("license_distribution")
18+
val licenseName: Provider<String> = providers.gradleProperty("license_name")
19+
val licenseUrl: Provider<String> = providers.gradleProperty("license_url")
20+
val licenseDistribution: Provider<String> = providers.gradleProperty("license_distribution")
2121

22-
val developerId = providers.gradleProperty("developer_id")
23-
val developerName = providers.gradleProperty("developer_name")
24-
val developerEmail = providers.gradleProperty("developer_email")
22+
val developerId: Provider<String> = providers.gradleProperty("developer_id")
23+
val developerName: Provider<String> = providers.gradleProperty("developer_name")
24+
val developerEmail: Provider<String> = providers.gradleProperty("developer_email")
2525

26-
val publishingStrategy = providers.gradleProperty("publishing_strategy")
26+
val publishingStrategy: Provider<String> = providers.gradleProperty("publishing_strategy")
2727

28-
val javaVersion = libs.versions.java.map { it.toInt() }
28+
val javaVersion: Provider<Int> = libs.versions.java.map { it.toInt() }
2929

3030
base.archivesName = projectName
3131
group = projectGroup.get()

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ org.gradle.configuration-cache = true
77
# Maven Properties
88
group = com.smushytaco
99
name = embedded-postgres
10-
version = 3.0.2
10+
version = 3.0.3
1111
description = Embedded PostgreSQL Server
1212
##########################################################################
1313
# Publishing Properties

gradle/libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
# Check this on https://github.com/Kotlin/dokka/releases/latest/
55
dokka = "2.1.0"
66
# Check this on https://plugins.gradle.org/plugin/dev.yumi.gradle.licenser/
7-
yumiGradleLicenser = "2.2.1"
7+
yumiGradleLicenser = "2.2.2"
88
# Check this on https://plugins.gradle.org/plugin/co.uzzu.dotenv.gradle/
99
dotenv = "4.0.0"
1010
# Check this on https://github.com/GradleUp/nmcp/releases/latest/
11-
nmcp = "1.3.0"
11+
nmcp = "1.4.4"
1212
##########################################################################
1313
# Java Configuration
1414
# The Java version the JDK will be for compiling and running code.
@@ -22,17 +22,17 @@ embeddedPostgresBinaries = "18.1.0"
2222
# Check this on https://central.sonatype.com/artifact/org.apache.commons/commons-compress/
2323
commonsCompress = "1.28.0"
2424
# Check this on https://central.sonatype.com/artifact/org.flywaydb/flyway-database-postgresql/
25-
flyway = "11.17.0"
25+
flyway = "12.0.0"
2626
# Check this on https://central.sonatype.com/artifact/org.junit.jupiter/junit-jupiter-api/
27-
junit = "6.0.1"
27+
junit = "6.0.2"
2828
# Check this on https://central.sonatype.com/artifact/org.liquibase/liquibase-core/
2929
liquibase = "5.0.1"
3030
# Check this on https://central.sonatype.com/artifact/org.postgresql/postgresql/
31-
postgresql = "42.7.8"
31+
postgresql = "42.7.9"
3232
# Check this on https://central.sonatype.com/artifact/org.slf4j/slf4j-api/
3333
slf4j = "2.0.17"
3434
# Check this on https://central.sonatype.com/artifact/org.tukaani/xz/
35-
xz = "1.10"
35+
xz = "1.11"
3636
##########################################################################
3737

3838
[libraries]

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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-9.2.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
val name = providers.gradleProperty("name")
1+
val name: Provider<String> = providers.gradleProperty("name")
22
rootProject.name = name.get()
33
pluginManagement {
44
repositories {

0 commit comments

Comments
 (0)