Skip to content

Commit f636584

Browse files
committed
kotlin 1.4.31, ktor 1.5.2, gradle 6.8.3
1 parent a5197ea commit f636584

File tree

7 files changed

+10
-25
lines changed

7 files changed

+10
-25
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010
}
1111

1212
// Append dependency
13-
implementation("com.icerockdev:storage-service:0.4.0")
13+
implementation("com.icerockdev:storage-service:0.5.0")
1414
````
1515

1616
## Library usage

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ org.gradle.parallel=true
44
org.gradle.caching=true
55

66
kotlin.code.style=official
7-
kotlin_version=1.4.0
8-
ktor_version=1.4.0
7+
kotlin_version=1.4.31
8+
ktor_version=1.5.2
99
java_dotenv_version=5.2.1
1010
logback_version=1.2.3
1111
aws_sdk_s3_version=2.14.2

gradle/wrapper/gradle-wrapper.jar

293 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 3 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

storage-service/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ apply(plugin = "java")
1212
apply(plugin = "kotlin")
1313

1414
group = "com.icerockdev"
15-
version = "0.4.0"
15+
version = "0.5.0"
1616

1717
val sourcesJar by tasks.registering(Jar::class) {
18-
classifier = "sources"
18+
archiveClassifier.set("sources")
1919
from(sourceSets.main.get().allSource)
2020
}
2121

0 commit comments

Comments
 (0)