so I’ve forked the library and did a commit to my ...
# skrape-it
m
so I’ve forked the library and did a commit to my fork - is there an easy and fast way to have gradle pull that commit exactly from my GitHub fork?
c
I think it should be possible with jitpack.io
Go there and paste the link to your forked repo in the search input
m
thanks, let’s try
yes it worked thanks a lot! unfortunately my fix didn’t work 😄
@Christian Dräger as a newbie here, is there a way to generate the library with JVM 1.8 as target? I think that might be the problem with the issue #93
c
I think it should already. At least the kotlin jvm settings in the build.gradle.kts file in line 60 https://www.github.com/skrapeit/skrape.it/tree/master/build.gradle.kts
m
mmm I added
Copy code
compileKotlin {
        kotlinOptions.jvmTarget = "1.8"
    }
but no luck
😕 1