Skip to content

Commit fefd012

Browse files
committed
Update dependencies
Bump version to 0.3.0
1 parent c775533 commit fefd012

6 files changed

Lines changed: 9 additions & 11 deletions

File tree

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repositories {
66
mavenCentral()
77
}
88

9-
val kotlinVersion = "1.6.21"
9+
val kotlinVersion = "1.8.20"
1010

1111
dependencies {
1212
implementation(kotlin("gradle-plugin", kotlinVersion))

buildSrc/src/main/kotlin/maven-publish-script.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ signing {
1515
val privateKeyPassword = System.getenv("GPG_PRIVATE_KEY_PASSWORD")
1616

1717
if (privateKey == null || privateKeyPassword == null) {
18-
println("Private key and/or associated Password for signing is missing. This is not a problem for local development.")
18+
println("Private key and/or associated Password for signing is missing. For local development this can be ignored, because it is only required for publishing.")
1919
return@signing
2020
}
2121
useInMemoryPgpKeys(privateKey, privateKeyPassword)

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
kotlin.code.style=official
22
group=at.quickme.kotlinmailer
3-
version=0.2.0
3+
version=0.3.0
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
4+
networkTimeout=10000
45
zipStoreBase=GRADLE_USER_HOME
56
zipStorePath=wrapper/dists

kotlinmailer-core/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.2")
1111
api("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.6.2")
1212

13-
api("org.simplejavamail:batch-module:7.1.1")
14-
api("org.simplejavamail:simple-java-mail:7.1.1")
15-
api("org.simplejavamail:smime-module:7.1.1")
13+
api("org.simplejavamail:batch-module:8.1.0")
14+
api("org.simplejavamail:simple-java-mail:8.1.0")
15+
api("org.simplejavamail:smime-module:8.1.0")
1616
}

settings.gradle.kts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,4 @@ rootProject.name = projectName
44

55
include("$projectName-core")
66
include("$projectName-html")
7-
8-
include("$projectName-test")
9-
10-
enableFeaturePreview("VERSION_CATALOGS")
7+
include("$projectName-test")

0 commit comments

Comments
 (0)