GithubHelp home page GithubHelp logo

Comments (8)

jschneider avatar jschneider commented on May 27, 2024 1

Take a look at the generated pom:
https://search.maven.org/artifact/io.github.rybalkinsd/kohttp/0.7.0/jar

The generated pom.xml contains that code:

<dependency>
      <groupId>com.squareup.okhttp3</groupId>
      <artifactId>okhttp</artifactId>
      <version>3.12.0</version>
      <scope>runtime</scope>
    </dependency>

I think scope = runtime is not the best

from kohttp.

jschneider avatar jschneider commented on May 27, 2024 1

gradle/gradle#1118
which references
https://youtrack.jetbrains.com/issue/KT-28355

There is a workaround described there. Don't know if it is worth it - maybe just wait for the bugfix upstream

from kohttp.

rybalkinsd avatar rybalkinsd commented on May 27, 2024

Hey @jschneider !

Could you please give me more details about the issue? The very best would be to get a code snippet.
I tried to reproduce in a tiny gradle project, but failed.

from kohttp.

rybalkinsd avatar rybalkinsd commented on May 27, 2024

Here is my test code

util.kt

package io.kohttp.test

import io.github.rybalkinsd.kohttp.dsl.httpGet

fun main(args: Array<String>) {
    val response: okhttp3.Response = httpGet {
        host = "google.com"
        path = "/search"
        param {
            "q" to "iphone"
            "safe" to "off"
        }
    }
    println(response.body()!!.string())
}

build.gradle.kts

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
    kotlin("jvm") version "1.3.11"
}

group = "kohttp"
version = "1.0-SNAPSHOT"

repositories {
    mavenCentral()
}

dependencies {
    compile(kotlin("stdlib-jdk8"))
    compile(group = "io.github.rybalkinsd", name = "kohttp", version = "0.7.0")
}

val fatJar = task("fatJar", type = Jar::class) {
    manifest {
        attributes["Main-Class"] = "io.kohttp.test.UtilKt"
    }

    from(configurations.runtime.map({ if (it.isDirectory) it else zipTree(it) }))
    with(tasks["jar"] as CopySpec)
}

tasks.withType<KotlinCompile> {
    kotlinOptions.jvmTarget = "1.8"
}

tasks {
    "build" {
        dependsOn(fatJar)
    }
}

from kohttp.

jschneider avatar jschneider commented on May 27, 2024

https://github.com/jschneider/kohttp-bug-66

from kohttp.

rybalkinsd avatar rybalkinsd commented on May 27, 2024

related to an internal problem for API dependency and kotlin compiler bug

from kohttp.

jschneider avatar jschneider commented on May 27, 2024

Yeah, that is the bug I was referencing... Thanks for working around that issue.

from kohttp.

rybalkinsd avatar rybalkinsd commented on May 27, 2024

@jschneider 0.7.1 is syncing to maven central now. Will be available in several hours

from kohttp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.