Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
j4ckofalltrades committed Aug 13, 2023
1 parent 86502f9 commit d69d548
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 25 deletions.
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

[![Maven Central](https://img.shields.io/maven-central/v/io.github.j4ckofalltrades/steam-webapi-kt.svg?label=Maven%20Central)](https://search.maven.org/artifact/io.github.j4ckofalltrades/steam-webapi-kt)
[![JitPack](https://jitpack.io/v/j4ckofalltrades/steam-webapi-kt.svg)](https://jitpack.io/#j4ckofalltrades/steam-webapi-kt)
[![Kotlin](https://img.shields.io/badge/kotlin-1.7.0-blueviolet)](https://kotlinlang.org)
[![Ktor](https://img.shields.io/badge/ktor-2.0.2-blue)](https://ktor.io)
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.0-blueviolet)](https://kotlinlang.org)
[![Ktor](https://img.shields.io/badge/ktor-2.3.3-blue)](https://ktor.io)

[![KDoc](https://img.shields.io/badge/kdoc-1.2.1-green)](https://j4ckofalltrades.github.io/steam-webapi-kt)
[![KDoc](https://img.shields.io/badge/kdoc-1.2.2-green)](https://j4ckofalltrades.github.io/steam-webapi-kt)
[![javadoc](https://javadoc.io/badge2/io.github.j4ckofalltrades/steam-webapi-kt/javadoc.svg)](https://javadoc.io/doc/io.github.j4ckofalltrades/steam-webapi-kt)
[![codecov](https://codecov.io/gh/j4ckofalltrades/steam-webapi-kt/branch/main/graph/badge.svg?token=2IDBVWIE7T)](https://codecov.io/gh/j4ckofalltrades/steam-webapi-kt)

Expand All @@ -17,15 +17,15 @@ Steam WebAPI wrapper in Kotlin and Ktor.

```kotlin
dependencies {
implementation("com.github.j4ckofalltrades:steam-webapi-kt:1.2.1")
implementation("com.github.j4ckofalltrades:steam-webapi-kt:1.2.2")
}
```

### Gradle Groovy DSL

```groovy
dependencies {
implementation "com.github.j4ckofalltrades:steam-webapi-kt:1.2.1"
implementation "com.github.j4ckofalltrades:steam-webapi-kt:1.2.2"
}
```

Expand All @@ -35,7 +35,7 @@ dependencies {
<dependency>
<groupId>com.github.j4ckofalltrades</groupId>
<artifactId>steam-webapi-kt</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
</dependency>
```

Expand All @@ -51,7 +51,7 @@ repositories {
}

dependencies {
implementation("com.github.j4ckofalltrades:steam-webapi-kt:1.2.1")
implementation("com.github.j4ckofalltrades:steam-webapi-kt:1.2.2")
}
```

Expand All @@ -63,7 +63,7 @@ dependencies {

```kotlin
dependencies {
implementation("com.github.j4ckofalltrades:steam-webapi-kt:1.2.1")
implementation("com.github.j4ckofalltrades:steam-webapi-kt:1.2.2")
}
```

Expand Down Expand Up @@ -99,8 +99,6 @@ steamUserApi.getPlayerSummaries(listOf("steam_ids"))

## Docs

For more detailed documentation see:

- [KDoc](https://j4ckofalltrades.github.io/steam-webapi-kt)

- [Javadoc](https://javadoc.io/doc/io.github.j4ckofalltrades/steam-webapi-kt/latest)
Expand Down
31 changes: 16 additions & 15 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import kotlinx.kover.api.DefaultIntellijEngine
import org.jetbrains.dokka.gradle.DokkaTask
import java.net.URL

Expand All @@ -7,17 +6,17 @@ plugins {
kotlin("plugin.serialization") version "1.9.0"
id("org.jlleitschuh.gradle.ktlint") version "10.2.1"
id("org.jetbrains.dokka") version "1.8.20"
id("org.jetbrains.kotlinx.kover") version "0.6.1"
id("org.jetbrains.kotlinx.kover") version "0.7.3"
`java-library`
`maven-publish`
signing
}

group = "io.github.j4ckofalltrades"
version = "1.2.1"
version = "1.2.2"

var kotlinVersion = "1.9.0"
var ktorVersion = "2.3.0"
var ktorVersion = "2.3.3"

repositories {
mavenCentral()
Expand All @@ -40,20 +39,22 @@ tasks.test {
useJUnitPlatform()
}

kover {
engine.set(DefaultIntellijEngine)
koverReport {
filters {
classes {
excludes += listOf("*.types.*", "*.core.*")
excludes {
classes("*.types.*", "*.core.*")
}
}
xmlReport {
onCheck.set(true)
reportFile.set(layout.buildDirectory.file("kover/coverage/xml/result.xml"))
}
htmlReport {
onCheck.set(true)
reportDir.set(layout.buildDirectory.dir("kover/coverage/html"))

defaults {
xml {
onCheck = true
setReportFile(layout.buildDirectory.file("kover/coverage/xml/result.xml"))
}
html {
onCheck = true
setReportDir(layout.buildDirectory.dir("kover/coverage/html"))
}
}
}

Expand Down

0 comments on commit d69d548

Please sign in to comment.